aboutsummaryrefslogtreecommitdiffstats
path: root/sdv/docker/sdvmodel/Dockerfile
blob: a71575e76303ba0f75d467228e962bbeeb66190f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.8-slim-buster

MAINTAINER Parth Yadav <parthyadav3105@gmail.com>

WORKDIR /server/

COPY resource-estimation/requirements.txt /server/requirements.txt
RUN pip install -r requirements.txt

COPY website/ /website/
COPY resource-estimation/ /server/

RUN rm requirements.txt

CMD [ "python", "/server/server" ]