personal-site/Dockerfile

9 lines
109 B
Docker
Raw Normal View History

2023-07-30 23:47:16 +00:00
FROM nginx:stable
2021-06-30 19:35:47 +00:00
2023-07-30 23:11:02 +00:00
WORKDIR /site
2021-06-30 19:23:46 +00:00
2023-07-30 23:11:02 +00:00
COPY . .
2023-07-30 23:17:24 +00:00
RUN /bin/bash compile.sh
RUN cp -r ./out/* /usr/share/nginx/html