-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
437a2ac
commit 205de92
Showing
1 changed file
with
3 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
FROM openjdk:8 | ||
FROM python:3.6 | ||
|
||
ARG GITLAB_USER | ||
ARG GITLAB_KEY | ||
# necessary: | ||
ARG DB_USER | ||
ARG DB_PASSWORD | ||
|
@@ -35,11 +33,11 @@ RUN mkdir app \ | |
&& cd spark-iforest/python \ | ||
&& pip install . \ | ||
&& cd ../../ \ | ||
&& git clone https://$GITLAB_USER:[email protected]/mkaranasou/esretriever.git \ | ||
&& git clone https://github.com/equalitie/esretriever.git \ | ||
&& cd esretriever \ | ||
&& pip install . \ | ||
&& cd ../ \ | ||
&& git clone --branch $BASKERVILLE_BRANCH https://$GITLAB_USER:[email protected]/deflect/baskerville.git \ | ||
&& git clone --branch $BASKERVILLE_BRANCH https://github.com/equalitie/baskerville.git \ | ||
&& cd baskerville \ | ||
&& pip install .[test] \ | ||
&& mkdir src/baskerville/logs \ | ||
|
@@ -55,4 +53,4 @@ RUN ["chmod", "u+rwx", "app/baskerville/src/baskerville/main.py"] | |
WORKDIR /app/baskerville/src/baskerville | ||
|
||
# metrics port, spark ui ports | ||
EXPOSE 8998 4040 4041 | ||
EXPOSE 8998 4040 4041 |