Files
2026-07-29 00:30:37 -04:00

5 lines
106 B
Docker

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