switched to much smaller alpine image since golang not required at runtime

This commit is contained in:
Brad Koehn 2018-11-21 12:51:37 -06:00
parent 5039853edc
commit f2a07db23a
1 changed files with 3 additions and 2 deletions

View File

@ -20,12 +20,13 @@ RUN mkdir /stage && \
/go/src/app/keys \
/stage && ls -l /stage
FROM golang:1.11.2-alpine3.8
FROM alpine:3.8
COPY --from=build --chown=daemon:daemon /stage /go
WORKDIR /go
VOLUME /go/keys
EXPOSE 8080
USER daemon
CMD ["writefreely"]
CMD ["bin/writefreely"]