Files
helsinki/Pt12/part12-containers-applications/todo-app/todo-frontend/dev.Dockerfile
T
2024-09-30 15:32:50 +03:00

14 lines
172 B
Docker
Executable File

FROM node:20 AS build-stage
ENV VITE_BACKEND_URL=http://localhost:8080/api/
WORKDIR /usr/src/app
COPY . .
RUN npm install
CMD ["npm", "run", "dev", "--", "--host"]