feat(docker): restructure Docker setup with new Dockerfiles and docker-compose files
Deploy / deploy (push) Failing after 2m50s

This commit is contained in:
ngthanhvu
2026-08-10 03:16:31 -04:00
parent 11871805dd
commit a895fbb264
5 changed files with 48 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
EXPOSE 3002
CMD ["npm", "run", "dev"]