26 lines
694 B
Docker
26 lines
694 B
Docker
|
|
FROM nginx:alpine
|
||
|
|
|
||
|
|
# Copy the resume site
|
||
|
|
COPY index.html /usr/share/nginx/html/index.html
|
||
|
|
|
||
|
|
# Custom nginx config for SPA routing
|
||
|
|
RUN echo 'server { \
|
||
|
|
listen 80; \
|
||
|
|
server_name _; \
|
||
|
|
root /usr/share/nginx/html; \
|
||
|
|
index index.html; \
|
||
|
|
location / { \
|
||
|
|
try_files $uri $uri/ /index.html; \
|
||
|
|
} \
|
||
|
|
location ~* \.(html|css|js|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ { \
|
||
|
|
expires 1d; \
|
||
|
|
add_header Cache-Control "public, immutable"; \
|
||
|
|
} \
|
||
|
|
gzip on; \
|
||
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml text/javascript; \
|
||
|
|
}' > /etc/nginx/conf.d/default.conf
|
||
|
|
|
||
|
|
EXPOSE 80
|
||
|
|
|
||
|
|
CMD ["nginx", "-g", "daemon off;"]
|