Browse Source

adding a Dockerfile to run a simple C HelloWorld

master
Anja Freudenreich 2 months ago
parent
commit
64cdde0926
1 changed files with 12 additions and 0 deletions
  1. 12
    0
      Dockerfile

+ 12
- 0
Dockerfile View File

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

Loading…
Cancel
Save