feat(docker): add docker compose file for development environment

This commit is contained in:
Kentai Radiquum 2024-04-29 23:31:31 +05:00
parent 47c6ea5d08
commit 023e0c3a0b
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 85 additions and 2 deletions

View file

@ -0,0 +1,12 @@
FROM node:21-alpine
WORKDIR /app
ADD package.json .
RUN npm update -g npm --loglevel verbose
COPY . .
RUN npm install --loglevel verbose
# RUN npm ci --no-audit --maxsockets 1
CMD ["npm", "run", "dev"]