mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
14 lines
218 B
Docker
14 lines
218 B
Docker
FROM node:18-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy package files from frontend directory
|
|
COPY frontend/package*.json ./
|
|
RUN npm install
|
|
|
|
# Copy frontend source code
|
|
COPY frontend/ .
|
|
|
|
# Build the app
|
|
CMD ["npm", "run", "build"]
|