phanpy/Dockerfile
2024-06-05 11:34:31 +02:00

21 lines
351 B
Docker

FROM node:20-alpine AS nodebuild
RUN apk add git
RUN cd / && \
git clone https://github.com/cheeaun/phanpy.git && \
cd phanpy && \
git checkout 2024.06.03.0a6030c
# builds to /phanpy/dist
RUN cd /phanpy && \
npm install && \
npm run build
FROM nginx:alpine
COPY --from=nodebuild /phanpy/dist /usr/share/nginx/html
EXPOSE 80