Skip to content

Instantly share code, notes, and snippets.

@dhanush
Last active January 17, 2019 06:59
Show Gist options
  • Save dhanush/99215f5f8a587a2282b9658c1c31cd5d to your computer and use it in GitHub Desktop.
Save dhanush/99215f5f8a587a2282b9658c1c31cd5d to your computer and use it in GitHub Desktop.
A sample docker file
FROM alpine:3.8
RUN apk update
RUN mkdir -p /tmp/dhanush
WORKDIR /tmp/dhanush
COPY ./test.exe ./
COPY ./test.env ./
ENTRYPOINT [ "/tmp/dhanush/test.exe" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment