dockefile
Some checks failed
Build & Push Docker Image / docker (push) Failing after 59s

This commit is contained in:
AlucardDev
2026-08-29 00:23:56 +03:00
parent 5a54e6bccb
commit 71bb333bee

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:22-alpine
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install --production
COPY . .
RUN npm run build
EXPOSE 3000
CMD [ "npm", "run", "start" ]