Files
fundamentals-of-webengineering/task_2_ts/Dockerfile
2025-10-08 11:54:45 +02:00

8 lines
154 B
Docker

FROM node
WORKDIR /app
COPY package.json .
RUN npm i
COPY . .
## EXPOSE [Port you mentioned in the vite.config file]
EXPOSE 5173
CMD ["npm", "run", "dev"]