docker dev image fix

pull/49/head
Hunter Long 2018-08-17 14:23:28 -07:00
parent bbf509982e
commit 5a3fd44a7a
1 changed files with 3 additions and 4 deletions

View File

@ -4,11 +4,10 @@ LABEL maintainer "Hunter Long (https://github.com/hunterlong)"
# Statup 'test' image for running a full test using the production environment
ENV VERSION=$(VERSION)
RUN apk add --no-cache libstdc++ gcc g++ make git ca-certificates linux-headers wget
RUN apk add --no-cache libstdc++ gcc g++ make git ca-certificates linux-headers wget curl
RUN wget -q https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 && \
chmod +x dep-linux-amd64 && \
mv dep-linux-amd64 /usr/local/bin/dep
RUN curl -L -s https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -o $GOPATH/bin/dep && \
chmod +x $GOPATH/bin/dep
WORKDIR $GOPATH/src/github.com/hunterlong/statup