2021-06-18 15:29:43 +02:00

8 lines
164 B
Docker

FROM python:3.8-slim
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENV PORT 5002
EXPOSE 5002
ENTRYPOINT [ "python" ]
CMD [ "entity_ident_server.py" ]