Files
tlc_tp1_docker/step1.1/dockerfile
2026-01-28 21:20:41 +01:00

15 lines
242 B
Plaintext

#Tache 1.1
FROM scratch
WORKDIR /
COPY hello_dyn /
COPY lib/x86_64-linux-gnu/libc.so.6 /lib/x86_64-linux-gnu/libc.so.6
COPY lib64/ld-linux-x86-64.so.2 /lib64/ld-linux-x86-64.so.2
CMD ["/hello_dyn"]
#Tache 1.2
COPY hello /
CMD ["/hello"]