Created
July 2, 2017 17:58
-
-
Save andyshinn/de65b71a7b50a0e5a73732c69f1a3d35 to your computer and use it in GitHub Desktop.
nginx serving Angular 4 application built as Docker multi-stage image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:8.1.2-onbuild as builder | |
ARG TARGET=production | |
RUN npm install @angular/cli | |
RUN node_modules/.bin/ng build -aot --target ${TARGET} | |
FROM nginx:1.13-alpine | |
COPY nginx.conf /etc/nginx/conf.d/ | |
COPY --from=builder /usr/src/app/dist /usr/src/app |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
sendfile on; | |
default_type application/octet-stream; | |
gzip on; | |
gzip_http_version 1.1; | |
gzip_disable "MSIE [1-6]\."; | |
gzip_min_length 256; | |
gzip_vary on; | |
gzip_proxied expired no-cache no-store private auth; | |
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript; | |
gzip_comp_level 9; | |
root /usr/src/app; | |
location / { | |
try_files $uri $uri/ /index.html =404; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment