@ -8,6 +8,7 @@ RUN npm ci && npm run build
FROM nginx:alpine
COPY ./nginx.conf /etc/nginx/nginx.conf
COPY --from=builder /home/node/app/dist /var/www/html
EXPOSE 8080
@ -84,6 +84,7 @@ http {
index index.html;
root /var/www/html;
try_files $uri $uri/ /index.html;
absolute_redirect off;
}