Files
simple-labeler/code/Dockerfile
2022-05-27 11:21:49 +03:00

8 lines
166 B
Docker

FROM python:3
COPY requirements.txt /requirements.txt
RUN pip3 install --upgrade pip
RUN pip3 install -r /requirements.txt
COPY . /code/
WORKDIR /code
CMD ./start.me