update docker

This commit is contained in:
Zack Scholl 2018-07-31 12:56:00 -07:00
parent d43cc80b53
commit e5a1a88a02
1 changed files with 6 additions and 5 deletions

View File

@ -1,15 +1,16 @@
# First build step # First build step
FROM golang:1.10-alpine as builder FROM golang:1.10-alpine as builder
WORKDIR /go/src/cowyo #WORKDIR /go/src/github.com/schollz/cowyo
COPY . . #COPY . .
# Disable crosscompiling # Disable crosscompiling
ENV CGO_ENABLED=0 ENV CGO_ENABLED=0
# Install git and make, compile and cleanup # Install git and make, compile and cleanup
RUN apk add --no-cache git make \ RUN apk add --no-cache git make \
&& go get -u github.com/schollz/cowyo \ && go get -u -v github.com/jteeuwen/go-bindata/... \
&& go get -u github.com/jteeuwen/go-bindata/... \ && go get -u -v -d github.com/schollz/cowyo \
&& cd /go/src/github.com/schollz/cowyo \
&& make \ && make \
&& apk del --purge git make \ && apk del --purge git make \
&& rm -rf /var/cache/apk* && rm -rf /var/cache/apk*
@ -17,7 +18,7 @@ RUN apk add --no-cache git make \
# Second build step uses the minimal scratch Docker image # Second build step uses the minimal scratch Docker image
FROM scratch FROM scratch
# Copy the binary from the first step # Copy the binary from the first step
COPY --from=builder /go/src/cowyo/cowyo /usr/local/bin/cowyo COPY --from=builder /go/src/github.com/schollz/cowyo/cowyo /usr/local/bin/cowyo
# Expose data folder # Expose data folder
VOLUME /data VOLUME /data
EXPOSE 8050 EXPOSE 8050