Commit 845584c8 authored by Alexander's avatar Alexander

extracted pip requirements file

parent 769b922f
......@@ -5,15 +5,14 @@ ENV http_proxy http://proxy.uni-klu.ac.at:3128/
ENV https_proxy http://proxy.uni-klu.ac.at:3128/
RUN apt-get update
RUN pip install flask
RUN pip install connexion[swagger-ui]
RUN pip install pika
EXPOSE 5000
WORKDIR /app
COPY src/data-hub/semantic-linking-microservice/app/ /app/
COPY src/modules/ /app/
RUN pip install -r requirements.txt
RUN chmod a+x main.py
CMD ["python", "./main.py"]
\ No newline at end of file
......@@ -5,16 +5,14 @@ ENV http_proxy http://proxy.uni-klu.ac.at:3128/
ENV https_proxy http://proxy.uni-klu.ac.at:3128/
RUN apt-get update
RUN pip install flask
RUN pip install connexion[swagger-ui]
RUN pip install pika
RUN pip install deprecated
EXPOSE 5000
WORKDIR /app
COPY src/rest-gateway/app/ /app/
COPY src/modules/ /app/
RUN pip install -r requirements.txt
RUN chmod a+x main.py
CMD ["python", "./main.py"]
\ No newline at end of file
flask
connexion[swagger-ui]
pika
deprecated
......@@ -5,17 +5,14 @@ ENV http_proxy http://proxy.uni-klu.ac.at:3128/
ENV https_proxy http://proxy.uni-klu.ac.at:3128/
RUN apt-get update
RUN pip install flask
RUN pip install connexion[swagger-ui]
RUN pip install pika
RUN pip install pymongo
RUN pip install deprecated
EXPOSE 5000
WORKDIR /app
COPY src/transaction-hub-in/trace-retrieval-microservice/app/ /app/
COPY src/modules/ /app/
RUN pip install -r requirements.txt
RUN chmod a+x main.py
CMD ["python", "./main.py"]
\ No newline at end of file
flask
connexion[swagger-ui]
pika
pymongo
deprecated
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment