2019-12-14 17:16:17 +08:00
|
|
|
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 && \
|
2019-12-24 04:07:34 +08:00
|
|
|
cd /build/release && npm install --unsafe-perm
|
2019-12-14 17:16:17 +08:00
|
|
|
|
|
|
|
|
|
|
|
FROM node:12-stretch-slim
|
|
|
|
WORKDIR /app
|
2020-01-28 04:58:50 +08:00
|
|
|
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
|
2019-12-24 04:07:34 +08:00
|
|
|
ENTRYPOINT ["npm", "start", "--", \
|
|
|
|
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
|
|
|
|
"--expose-gc", \
|
2020-01-28 04:58:50 +08:00
|
|
|
"--config-path=$CONFIG_FILE", \
|
|
|
|
"--Server-Database-dbFolder=$DB_PATH", \
|
|
|
|
"--Server-Media-folder=$MEDIA_PATH", \
|
|
|
|
"--Server-Media-tempFolder=$TEMP_PATH"]
|
2019-12-14 17:16:17 +08:00
|
|
|
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"]
|
2019-12-14 17:16:17 +08:00
|
|
|
HEALTHCHECK --interval=30s --timeout=10s --retries=4 --start-period=60s \
|
|
|
|
CMD wget --quiet --tries=1 --no-check-certificate --spider \
|
|
|
|
http://localhost:80 || exit 1
|
|
|
|
|