add ngnix conf file for docker build (#1837)

This commit is contained in:
Ajay Bura
2024-07-24 18:21:03 +05:30
committed by GitHub
parent b387370aaf
commit 2157f9a322
3 changed files with 28 additions and 4 deletions

View File

@@ -14,6 +14,7 @@ RUN npm run build
FROM nginx:1.27.0-alpine
COPY --from=builder /src/dist /app
COPY --from=builder /src/docker-nginx.conf /etc/nginx/conf.d/default.conf
RUN rm -rf /usr/share/nginx/html \
&& ln -s /app /usr/share/nginx/html