-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
63 lines (43 loc) · 1.41 KB
/
Dockerfile
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
51
52
53
54
55
56
57
58
59
60
61
62
63
#
# Net-Doc Docker File
#
# Start with the node debian image
FROM node:22-bullseye-slim AS base
# Install openssl for Prisma and NGINX
RUN apt-get update && apt-get install openssl nginx -y
# Create a new temp container called `deps` from `base`
# Add the package files and install all the deps.
FROM base AS deps
RUN mkdir /app
WORKDIR /app
ADD package.json package-lock.json ./
RUN npm install --production=false
# create a new temp container called `production-deps` from `base`
# copy the `deps` node_modules folder over and prune it to production only.
FROM base AS production-deps
RUN mkdir /app
WORKDIR /app
COPY --from=deps /app/node_modules /app/node_modules
ADD package.json package-lock.json ./
RUN npm prune --production
# create a new temp container called `build` from `base`
# Copy over the full deps and run build.
FROM base AS build
ENV NODE_ENV=production
RUN mkdir /app
WORKDIR /app
COPY --from=deps /app/node_modules /app/node_modules
ADD . .
RUN npm run build
# Go back to the `base` image and copy in the production deps and build
FROM base
ENV NODE_ENV=production
RUN mkdir /app
WORKDIR /app
COPY --from=production-deps /app/node_modules /app/node_modules
COPY --from=build /app/build/server /app/build/server
COPY --from=build /app/build/client /app/build/client
ADD . .
RUN chmod +x /app/docker-entrypoint.sh
ENTRYPOINT [ "/app/docker-entrypoint.sh" ]
CMD []