We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 283b7e3 commit abf3527Copy full SHA for abf3527
infra/docker/Dockerfile
@@ -10,6 +10,9 @@ ENV SPARK_HOME=/opt/spark
10
RUN mkdir -p /opt/spark && curl -s http://apache.rediris.es/spark/spark-2.4.4/spark-2.4.4-bin-hadoop2.7.tgz | tar -xz -C "${SPARK_HOME}" --strip-components=1
11
ENV PATH=$SPARK_HOME/bin:$SPARK_HOME/sbin:$PATH
12
13
+RUN cp "${SPARK_HOME}/conf/log4j.properties.template" "${SPARK_HOME}/conf/log4j.properties" && \
14
+ sed -ibak 's/rootCategory=INFO/rootCategory=ERROR/g' "${SPARK_HOME}/conf/log4j.properties"
15
+
16
ENV SPARK_NO_DAEMONIZE=true
17
ENV PYSPARK_PYTHON=python3
18
EXPOSE 4040 7077 8080
0 commit comments