We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89fb6bd commit 11fde97Copy full SHA for 11fde97
Dockerfile
@@ -1,9 +1,11 @@
1
-FROM openjdk:8-jdk-alpine
+FROM openjdk:8-jdk-stretch
2
3
# Download hadoop
4
WORKDIR /opt
5
-RUN apk add bash curl maven python
+RUN apt-get update
6
+RUN apt-get install -y bash curl maven python
7
RUN curl -L 'http://archive.apache.org/dist/hadoop/core/hadoop-2.6.0/hadoop-2.6.0.tar.gz' | tar -xz
8
+RUN curl -L 'https://julialang-s3.julialang.org/bin/linux/x64/1.1/julia-1.1.1-linux-x86_64.tar.gz' | tar -xz
9
10
# Copy the project
11
COPY . /opt/ldbc_snb_datagen
@@ -14,4 +16,6 @@ RUN rm params*.ini
14
16
RUN mvn -DskipTests clean assembly:assembly
15
17
18
ENV HADOOP_CLIENT_OPTS '-Xmx8G'
19
+ENV PATH "/opt/julia-1.1.1/bin:${PATH}"
20
CMD /opt/ldbc_snb_datagen/docker_run.sh
21
+CMD julia -e 1+1
0 commit comments