docker
All checks were successful
Publish Docker Images / docker (push) Successful in 1m6s

This commit is contained in:
Lee
2023-11-16 12:54:49 +00:00
parent f54f381ef6
commit df3e9ee1c9
4 changed files with 14 additions and 27 deletions

21
Dockerfile Normal file
View File

@ -0,0 +1,21 @@
FROM fascinated/docker-images:node-pnpm-latest
ARG APP
WORKDIR /usr/src/app
# Copy root package.json and lockfile
COPY package.json ./
COPY pnpm-lock.yaml ./
# Copy the package.json
COPY apps/${APP}/package.json ./apps/${APP}/package.json
RUN pnpm install
# Copy app source
COPY . .
EXPOSE 3000
CMD [ "pnpm", "apps/${APP}/dist/index.js" ]