Add Dockerfile
parent
28a1a85531
commit
ce66efe4a8
@ -0,0 +1,3 @@
|
||||
Dockerfile
|
||||
node_modules
|
||||
.git
|
@ -0,0 +1,14 @@
|
||||
FROM node:18
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm
|
||||
COPY ./pnpm-lock.yaml ./
|
||||
RUN pnpm fetch
|
||||
|
||||
COPY ./ ./
|
||||
RUN pnpm install -r --offline
|
||||
RUN pnpm run build
|
||||
|
||||
EXPOSE 3000
|
||||
CMD ["node", "dist/server/server.js"]
|
Loading…
Reference in New Issue