FROM python:3 LABEL maintainer="Alexander Lercher" RUN apt-get update RUN pip install -U pip EXPOSE 5000 WORKDIR /app COPY src/data-hub/role-stage-discovery-microservice/app/requirements.txt /app/ RUN pip install -r requirements.txt COPY src/modules/ /app/ COPY src/data-hub/proactive-community-detection-microservice/app/ /app/ RUN chmod a+x main.py CMD ["python", "./main.py"]