This repository has been archived on 2026-08-09. You can view files and clone it, but cannot push or open issues or pull requests.
review-front/Dockerfile

10 lines
171 B
Docker

FROM nginx:alpine
COPY ./dist/review-front/browser /usr/share/nginx/html
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]