9 lines
184 B
Docker
9 lines
184 B
Docker
FROM nginx:stable-alpine
|
|
|
|
COPY docker/frontend/nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY frontend/dist/ /usr/share/nginx/html/
|
|
|
|
RUN chmod -R a+rX /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|