Skip to content
Closed
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
2 changes: 1 addition & 1 deletion 3.5.4/scala2.12-java11-ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FROM eclipse-temurin:11-jre-focal
ARG spark_uid=185

RUN groupadd --system --gid=${spark_uid} spark && \
useradd --system --uid=${spark_uid} --gid=spark spark
useradd -m --system --uid=${spark_uid} --gid=spark spark

RUN set -ex; \
apt-get update; \
Expand Down
2 changes: 1 addition & 1 deletion 3.5.4/scala2.12-java17-ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FROM eclipse-temurin:17-jammy
ARG spark_uid=185

RUN groupadd --system --gid=${spark_uid} spark && \
useradd --system --uid=${spark_uid} --gid=spark spark
useradd -m --system --uid=${spark_uid} --gid=spark spark

RUN set -ex; \
apt-get update; \
Expand Down
2 changes: 1 addition & 1 deletion 4.0.0-preview1/scala2.13-java17-ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FROM eclipse-temurin:17-jammy
ARG spark_uid=185

RUN groupadd --system --gid=${spark_uid} spark && \
useradd --system --uid=${spark_uid} --gid=spark spark
useradd -m --system --uid=${spark_uid} --gid=spark spark

RUN set -ex; \
apt-get update; \
Expand Down
2 changes: 1 addition & 1 deletion 4.0.0-preview1/scala2.13-java21-ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FROM eclipse-temurin:21-jammy
ARG spark_uid=185

RUN groupadd --system --gid=${spark_uid} spark && \
useradd --system --uid=${spark_uid} --gid=spark spark
useradd -m --system --uid=${spark_uid} --gid=spark spark

RUN set -ex; \
apt-get update; \
Expand Down
2 changes: 1 addition & 1 deletion 4.0.0-preview2/scala2.13-java17-ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FROM eclipse-temurin:17-jammy
ARG spark_uid=185

RUN groupadd --system --gid=${spark_uid} spark && \
useradd --system --uid=${spark_uid} --gid=spark spark
useradd -m --system --uid=${spark_uid} --gid=spark spark

RUN set -ex; \
apt-get update; \
Expand Down
2 changes: 1 addition & 1 deletion 4.0.0-preview2/scala2.13-java21-ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FROM eclipse-temurin:21-jammy
ARG spark_uid=185

RUN groupadd --system --gid=${spark_uid} spark && \
useradd --system --uid=${spark_uid} --gid=spark spark
useradd -m --system --uid=${spark_uid} --gid=spark spark

RUN set -ex; \
apt-get update; \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FROM {{ BASE_IMAGE }}
ARG spark_uid=185

RUN groupadd --system --gid=${spark_uid} spark && \
useradd --system --uid=${spark_uid} --gid=spark spark
useradd -m --system --uid=${spark_uid} --gid=spark spark

RUN set -ex; \
apt-get update; \
Expand Down
Loading