Files
test/Dockerfile
AlucardDev 71bb333bee
Some checks failed
Build & Push Docker Image / docker (push) Failing after 59s
dockefile
2026-08-29 00:23:56 +03:00

16 lines
168 B
Docker

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" ]