digital.solutions.test/front/Dockerfile.dev

9 lines
109 B
Docker

FROM node:22-alpine3.20
WORKDIR /app
COPY . .
RUN yarn
CMD [ "yarn", "dev", "--host=front", "--port=80" ]