„Dockerfile“ löschen

This commit is contained in:
Anja Freudenreich 2024-04-12 20:06:19 +00:00
parent 64cdde0926
commit 3398de7e59

View File

@ -1,12 +0,0 @@
# use alpine as base image
FROM alpine as build-env
# install build-base meta package inside build-env container
RUN apk add --no-cache build-base
# change directory to /app
WORKDIR /app
# copy all files from current directory inside the build-env container
COPY . .
# Compile the source code and generate hello binary executable file
RUN gcc -o hello helloDocker.c
# run the program
ENTRYPOINT ["/app/hello"]