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

adding docker arm32v7

This commit is contained in:
Patrik J. Braun 2019-12-16 16:13:39 +01:00
parent 67754ecea6
commit 5b197a4b91
2 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,46 @@
FROM alpine AS qemu-builder
RUN apk add --no-cache wget && \
wget https://github.com/multiarch/qemu-user-static/releases/download/v4.1.1-1/x86_64_qemu-arm-static.tar.gz && \
tar -xvf x86_64_qemu-arm-static.tar.gz
# separate release builder for faster build on docker hub
FROM node:12-alpine AS node-builder
RUN apk add python build-base
# copying only package{-lock}.json to make node_modules cachable
COPY package*.json /build/
WORKDIR /build
RUN set -x && npm install --unsafe-perm
# build app
COPY . /build
RUN npm run create-release
FROM arm32v7/node:12-alpine AS builder
COPY --from=qemu-builder /qemu-arm-static /usr/bin
RUN apk add python build-base
COPY --from=node-builder /build/release /build/release
RUN mkdir -p /build/release/data/config && \
mkdir -p /build/release/data/db && \
mkdir -p /build/release/data/images && \
mkdir -p /build/release/data/tmp && \
cd /build/release && npm install --unsafe-perm && \
npm start -- --config-only --force-rewrite-config \
--config-path=data/config/config.json \
--Server-Database-sqlite-storage='data/db/sqlite.db' \
--Server-Database-memory-usersFile='data/db/users.db' \
--Server-Media-folder='data/images' \
--Server-Media-tempFolder='data/tmp' || true
FROM arm32v7/node:12-alpine
COPY --from=qemu-builder /qemu-arm-static /usr/bin
WORKDIR /app
ENTRYPOINT ["npm", "start"]
EXPOSE 80
ENV NODE_ENV=production
COPY --from=builder /build/release /app
RUN ln -s /app/data/config/config.json config.json
VOLUME ["/app/data/config", "/app/data/db", "/app/data/images", "/app/data/TEMP"]
HEALTHCHECK --interval=30s --timeout=10s --retries=4 --start-period=60s \
CMD wget --quiet --tries=1 --no-check-certificate --spider \
http://localhost:80 || exit 1

View File

@ -0,0 +1,4 @@
#!/bin/bash
# Register qemu-*-static for all supported processors except the
# current one, but also remove all registered binfmt_misc before
docker run --rm --privileged multiarch/qemu-user-static:register --reset