1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00

18 lines
379 B
Docker
Raw Normal View History

2018-12-05 21:55:11 +01:00
FROM node:10-stretch
MAINTAINER Patrik J. Braun
RUN git clone https://github.com/bpatrik/pigallery2.git && \
cd /pigallery2 && \
npm install --unsafe-perm && \
npm run build-release
RUN cp -r /pigallery2/release /pigallery2-release && \
rm /pigallery2 -R
RUN cd /pigallery2-release && \
npm install --unsafe-perm
cmd cd /pigallery2-release && npm start