Skip to content

Instantly share code, notes, and snippets.

@Adron
Created May 29, 2017 22:19
Show Gist options
  • Save Adron/d057df9104ecfebf208e78dc8ffbb5f6 to your computer and use it in GitHub Desktop.
Save Adron/d057df9104ecfebf208e78dc8ffbb5f6 to your computer and use it in GitHub Desktop.
Dockerfile for Data Diluvium w/ Alpine base image.
FROM golang:1.7.4-alpine
ENV GOPATH /go
RUN mkdir /app && \
apk add --update curl && \
rm -rf /var/cache/apk/*
ADD . /app/
WORKDIR /app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment