internet_ml/docker/web/frontend/Dockerfile

7 lines
129 B
Docker
Raw Normal View History

2023-01-03 09:31:15 +00:00
FROM node:16
WORKDIR /app
COPY . /app
RUN apt install -y python3 && yarn install && yarn build
EXPOSE 3000
CMD ["yarn", "start"]