Merge pull request #9848 from spantaleev/make-docker-image-smaller

Base Docker image on nginx:alpine, not the larger nginx:latest
This commit is contained in:
Travis Ralston 2019-05-27 11:41:18 -06:00 committed by GitHub
commit 982416b3f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ RUN cp /src/config.sample.json /src/webapp/config.json
# App
FROM nginx:latest
FROM nginx:alpine
COPY --from=builder /src/webapp /app