forked from Shelf-nu/shelf.nu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.image
50 lines (36 loc) · 1.3 KB
/
Dockerfile.image
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Base Node image
FROM node:20-bookworm-slim AS base
# Set for base and all layer that inherit from it
ENV PORT="8080"
ENV NODE_ENV="production"
ARG DEBIAN_FRONTEND="noninteractive"
WORKDIR /src
# Install openssl for Prisma
RUN apt-get update && \
apt-get install -y openssl && \
rm -rf /var/lib/apt/lists/*
# Install all node_modules, including dev dependencies
FROM base AS deps
ADD package.json .
RUN npm install --include=dev
# Build the app and setup production node_modules
FROM base AS build
COPY --from=deps /src/node_modules /src/node_modules
ADD . .
RUN npx prisma generate
RUN npm run build
RUN npm prune --omit=dev
# Finally, build the production image with minimal footprint
FROM base AS release
# Install packages needed for pupeteer
RUN apt-get update -qq && \
apt-get install --no-install-recommends -y chromium chromium-sandbox && \
rm -rf /var/lib/apt/lists /var/cache/apt/archives
ENV CHROME_EXECUTABLE_PATH="/usr/bin/chromium"
COPY --from=build /src/node_modules /src/node_modules
COPY --from=build /src/app/database /src/app/database
COPY --from=build /src/build /src/build
COPY --from=build /src/package.json /src/package.json
COPY --from=build /src/docker-entrypoint.sh /src/docker-entrypoint.sh
RUN chmod +x /src/docker-entrypoint.sh
ENTRYPOINT [ "/src/docker-entrypoint.sh" ]