Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docker/debian-bullseye/Dockerfile.build
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
3 changes: 2 additions & 1 deletion docker/debian-buster/Dockerfile.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#-----------------BUILDER-----------------
#-----------------------------------------
FROM node:18-buster 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
Expand All @@ -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
Expand Down