Files
ptpchat-frontend/Dockerfile
2026-06-08 15:41:29 +02:00

6 lines
128 B
Docker

# production stage
FROM nginx:stable-alpine
COPY ./dist/spa/ /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]