Safe_Share/safeshare/safeshare-frontend/Dockerfile

12 lines
91 B
Docker

FROM node
WORKDIR /frontend
COPY . .
RUN npm install
EXPOSE 3000
CMD ["npm", "start"]