Dockerfile: Reduce number of container layers for final image (#5124)

This commit is contained in:
Andrew Rabert 2018-08-15 03:33:35 -04:00 committed by Audrius Butkevicius
parent 0bc3ae15ae
commit ada5ab74d2
1 changed files with 2 additions and 8 deletions

View File

@ -14,17 +14,11 @@ EXPOSE 8384 22000 21027/udp
VOLUME ["/var/syncthing"]
RUN apk add --no-cache ca-certificates
RUN apk add --no-cache ca-certificates su-exec
COPY --from=builder /go/src/github.com/syncthing/syncthing/syncthing /bin/syncthing
RUN apk add --no-cache su-exec
ENV STNOUPGRADE=1
ENV PUSR=syncthing
ENV PUID=1000
ENV PGRP=syncthing
ENV PGID=1000
ENV STNOUPGRADE=1 PUSR=syncthing PUID=1000 PGRP=syncthing PGID=1000
HEALTHCHECK --interval=1m --timeout=10s \
CMD nc -z localhost 8384 || exit 1