1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-12-21 01:22:08 +02:00

distro vips

This commit is contained in:
Dedy Martadinata S 2024-02-21 14:03:12 +07:00 committed by GitHub
parent 7fa2594f76
commit 6016a750f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,7 @@
#-----------------BUILDER-----------------
#-----------------------------------------
FROM node:18-bullseye AS builder
RUN apt update && apt install -y --no-install-recommends libvips-dev python3
COPY pigallery2-release /app
WORKDIR /app
RUN npm install --unsafe-perm
@ -25,7 +26,7 @@ ENV NODE_ENV=production \
EXPOSE 80
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates wget ffmpeg \
&& apt-get install -y --no-install-recommends ca-certificates wget ffmpeg libvips42 \
&& apt-get clean -q -y \
&& rm -rf /var/lib/apt/lists/*
COPY --from=builder /app /app