Skip to content

Instantly share code, notes, and snippets.

@harshitanand
Created August 4, 2017 12:00
Show Gist options
  • Save harshitanand/289f690f765aca36d5587c571ebdf7de to your computer and use it in GitHub Desktop.
Save harshitanand/289f690f765aca36d5587c571ebdf7de to your computer and use it in GitHub Desktop.
Create docker image for golang - app
FROM iron/base
WORKDIR /app
# copy binary into image
COPY hello /app/
ENTRYPOINT ["./hello"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment