Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions services/import-pipeline/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:latest
FROM debian:9

ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
ENV PATH /opt/conda/bin:$PATH
Expand All @@ -22,4 +22,4 @@ RUN apt-get install -y curl grep sed dpkg && \
rm tini.deb && \
apt-get clean
RUN /bin/bash -c 'conda install -y dropbox requests mysqlclient ipython jinja2 && conda update -y sqlite && pip install apscheduler && pip install gspread oauth2client'
ENTRYPOINT /bin/bash -c "python /importer/import_service/main.py"
ENTRYPOINT /bin/bash -c "python /importer/import_service/main.py"
2 changes: 1 addition & 1 deletion services/session-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y maven git
ARG BRANCH
RUN git clone https://github.com/cBioPortal/session-service.git --branch $BRANCH && \
mvn -f session-service/pom.xml package -DskipTests -Dpackaging.type=jar && \
mv session-service/target/session_service*.jar /session-service.jar
mv session-service/target/session_service-0.2.0.jar /session-service.jar
ENV SS_MONGO_HOST=session-service-mongodb SS_MONGO_PORT=27017 SS_MONGO_NAME=session-service SERVER_PORT=8090
ENTRYPOINT java -Dspring.data.mongodb.uri=mongodb://$SS_MONGO_HOST:$SS_MONGO_PORT/$SS_MONGO_NAME \
-Dserver.port=$SERVER_PORT -Dserver.contextPath=/ -jar /session-service.jar