1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
Files
AdministrationItDepartmens/docker/frontend/Dockerfile
2025-01-01 21:53:59 +06:00

10 lines
236 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM node:18-alpine
WORKDIR /app
COPY frontend/package*.json ./
RUN npm install
# В dev режиме не копируем исходники, они будут монтироваться через volume
CMD ["npm", "run", "dev"]