personal-site/Dockerfile
2023-07-30 18:17:24 -05:00

10 lines
126 B
Docker

FROM nginx:alpine
WORKDIR /site
COPY . .
RUN apk add bash
RUN /bin/bash compile.sh
RUN cp -r ./out/* /usr/share/nginx/html