Marco Zeisler 51663b7583 rename
2021-05-27 20:07:46 +02:00

8 lines
164 B
Docker

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