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" ]