personal-site/Dockerfile

10 lines
126 B
Docker
Raw Normal View History

2023-07-30 23:11:02 +00:00
FROM nginx:alpine
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 apk add bash
RUN /bin/bash compile.sh
RUN cp -r ./out/* /usr/share/nginx/html