Dockerfile 259 Bytes
Newer Older
1
FROM python:3
2
LABEL maintainer="Manuel Herold"
3 4 5 6 7 8 9 10

RUN apt-get update
RUN pip install flask
RUN pip install connexion[swagger-ui]

EXPOSE 5000

WORKDIR /app
11
COPY src/data-hub/pareto-trust-microservice/app/ /app/
12 13 14
RUN chmod a+x main.py

CMD ["python", "./main.py"]