master
Andriy 2 months ago
parent cfd0a4656e
commit 5d327265f0

@ -0,0 +1,15 @@
FROM node:18-alpine
WORKDIR /app
COPY ./package.json ./
RUN npm i
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["node", "build"]
Loading…
Cancel
Save