-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
39 lines (25 loc) · 821 Bytes
/
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
# syntax=docker/dockerfile:1
ARG NODE_VERSION=20.11.0
ARG PNPM_VERSION=9.12.2
ARG NODE_ENV
# Use node image for base image for all stages.
FROM node:${NODE_VERSION}-alpine
# Create app directory, this is in our container/in our image
WORKDIR /nestjs-starter-kit
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package.json pnpm-lock.yaml ./
COPY prisma ./prisma/
RUN npm i -g pnpm@${PNPM_VERSION}
RUN pnpm install
# RUN pnpm install --production
# If you are building your code for production
# RUN pnpm ci --only=production
# Copy app source from host machine to /nestjs-starter-kit in the container
COPY . .
RUN npx prisma generate
RUN pnpm build
CMD ["pnpm", "start:dev"]
RUN echo ${NODE_ENV}
EXPOSE ${NODE_ENV}