digital.solutions.test/front/Dockerfile.dev

9 lines
109 B
Docker
Raw Normal View History

2024-11-09 16:01:54 +01:00
FROM node:22-alpine3.20
WORKDIR /app
COPY . .
RUN yarn
CMD [ "yarn", "dev", "--host=front", "--port=80" ]