Skip to content

Commit 3c256e0

Browse files
committed
Remove COPY directives in hello world
1 parent b2d2fcc commit 3c256e0

2 files changed

Lines changed: 0 additions & 12 deletions

File tree

ci/cscs.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,3 @@ build_job:
1010
extends: .container-builder-cscs-zen2
1111
variables:
1212
DOCKERFILE: ci/docker/Dockerfile.build
13-
test_job:
14-
stage: test
15-
extends: .container-runner-eiger-zen2
16-
image: $PERSIST_IMAGE_NAME
17-
script:
18-
- /opt/helloworld/bin/hello
19-
variables:
20-
SLURM_JOB_NUM_NODES: 2
21-
SLURM_NTASKS: 2

ci/docker/Dockerfile.build

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
FROM ubuntu:22.04 as builder
22

3-
COPY . /helloworld/src
43

54
RUN apt-get update \
65
&& env DEBIAN_FRONTEND=noninteractive TZ=Europe/Zurich apt-get -yqq install --no-install-recommends build-essential cmake \
@@ -10,6 +9,4 @@ RUN apt-get update \
109
&& make -j$(cat /proc/cpuinfo | grep '^processor' | wc -l) install \
1110
&& make install
1211

13-
FROM ubuntu:22.04
14-
COPY --from=builder /opt/hello /opt/helloworld
1512

0 commit comments

Comments
 (0)