Browse Source

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

pull/34/head
Brad Koehn 5 years ago
parent
commit
f2a07db23a
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      Dockerfile

+ 3
- 2
Dockerfile 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"]

Loading…
Cancel
Save