docker file init

This commit is contained in:
emochka2007 2024-05-28 23:19:31 +03:00
parent 49a2687538
commit 8e0cdcfdbe

13
chain-api/Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM node:latest
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
CMD [ "node", "dist/src/main.js" ]