7 lines
198 B
Docker
7 lines
198 B
Docker
FROM nginx:alpine
|
|
RUN rm -rf /usr/share/nginx/html/*
|
|
COPY frontend/dist /usr/share/nginx/html/app
|
|
COPY nginx/default.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|