luxirty-search/Dockerfile

6 lines
150 B
Docker
Raw Normal View History

2024-10-08 08:47:49 +00:00
FROM nginx:1.27
2024-10-09 08:01:26 +00:00
COPY ./conf/nginx.conf /etc/nginx/conf.d/default.conf
2024-10-08 08:47:49 +00:00
COPY ./dist/ /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]