1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/docker/debian-stretch/selfcontained/Dockerfile

36 lines
1.3 KiB
Docker
Raw Normal View History

FROM node:12-stretch AS BUILDER
# LABEL maintainer="Patrik J. Braun"
# copying only package{-lock}.json to make node_modules cachable
RUN git clone https://github.com/bpatrik/pigallery2.git /build
WORKDIR /build
RUN set -x && npm install --unsafe-perm && \
mkdir -p /build/release/data/config && \
mkdir -p /build/release/data/db && \
mkdir -p /build/release/data/images && \
mkdir -p /build/release/data/tmp && \
npm run create-release && \
cd /build/release && npm install --unsafe-perm
FROM node:12-stretch-slim
WORKDIR /app
ENV NODE_ENV=production \
CONFIG_FILE=/app/data/config/config.json \
DB_PATH=/app/data/db \
MEDIA_PATH=/app/data/images \
TEMP_PATH=/app/data/tmp
ENTRYPOINT ["npm", "start", "--", \
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
"--expose-gc", \
"--config-path=$CONFIG_FILE", \
"--Server-Database-dbFolder=$DB_PATH", \
"--Server-Media-folder=$MEDIA_PATH", \
"--Server-Media-tempFolder=$TEMP_PATH"]
EXPOSE 80
COPY --from=BUILDER /build/release /app
2019-12-18 17:27:19 +08:00
VOLUME ["/app/data/config", "/app/data/db", "/app/data/images", "/app/data/tmp"]
HEALTHCHECK --interval=30s --timeout=10s --retries=4 --start-period=60s \
CMD wget --quiet --tries=1 --no-check-certificate --spider \
http://localhost:80 || exit 1