cineclub-site/front/Dockerfile

12 lines
110 B
Docker
Raw Permalink Normal View History

2022-04-03 01:20:53 +02:00
FROM node:latest
WORKDIR /front
COPY package*.json ./
2022-04-03 01:20:54 +02:00
RUN yarn install
2022-04-03 01:20:53 +02:00
EXPOSE 3000
2022-04-03 01:20:54 +02:00
CMD [ "yarn", "dev" ]