Dockerfile 375 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
FROM python:3
LABEL maintainer="Alexander Lercher"

ENV http_proxy http://proxy.uni-klu.ac.at:3128/
ENV https_proxy http://proxy.uni-klu.ac.at:3128/

RUN apt-get update

EXPOSE 5000

WORKDIR /app
12
COPY src/transaction-hub-in/trace-retrieval-microservice/app/ /app/
13
COPY src/modules/ /app/
14 15

RUN pip install -r requirements.txt
16 17 18
RUN chmod a+x main.py

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