Docker-Test/Dockerfile

8 lines
83 B
Docker

FROM gcc:latest
WORKDIR /app
COPY bin/hello_world /app/
CMD ["bin/hello_world"]