9 lines
169 B
Docker
9 lines
169 B
Docker
FROM nginx:1.27-alpine
|
|
|
|
COPY ./docker/nginx/default.conf /etc/nginx/conf.d/default.conf
|
|
COPY ./dist /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|