Skip to content

Instantly share code, notes, and snippets.

@0xAhmed
Last active October 3, 2017 12:10
Show Gist options
  • Select an option

  • Save 0xAhmed/37aa901b966b07c80c160231fd8f8e0a to your computer and use it in GitHub Desktop.

Select an option

Save 0xAhmed/37aa901b966b07c80c160231fd8f8e0a to your computer and use it in GitHub Desktop.
Example Dockerfile for a Go binary
FROM alpine:latest
MAINTAINER The Dockbit Team "team@dockbit.com"
# In case no version is passed
ARG version=1.0
COPY source/$version/app /app
EXPOSE 8080
ENTRYPOINT ["/app"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment