This commit is contained in:
tuanvu
2026-01-28 21:20:41 +01:00
parent b54044af48
commit 28f0e4e2c6
9 changed files with 87 additions and 0 deletions

14
step1.1/dockerfile Normal file
View File

@@ -0,0 +1,14 @@
#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"]