cineclub-site/front/Dockerfile

14 lines
123 B
Text
Raw Normal View History

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