8 lines
164 B
Docker
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" ] |