Skip to content

Commit

Permalink
Update to scala 2.13.9 (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbalonperin authored Oct 13, 2022
1 parent a63a04c commit 78392c2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions eclipse-temurin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ FROM eclipse-temurin:${BASE_IMAGE_TAG:-11.0.16.1_1-jdk}

# Env variables
ARG SCALA_VERSION
ENV SCALA_VERSION ${SCALA_VERSION:-2.13.8}
ENV SCALA_VERSION ${SCALA_VERSION:-2.13.9}
ARG SBT_VERSION
ENV SBT_VERSION ${SBT_VERSION:-1.6.2}
ARG USER_ID
ENV USER_ID ${USER_ID:-1001}
ARG GROUP_ID
ARG GROUP_ID
ENV GROUP_ID ${GROUP_ID:-1001}

# Install sbt
Expand Down Expand Up @@ -83,6 +83,6 @@ RUN \
## Users wanting to use this container as non-root should combine the two following arguments
## -u sbtuser
## -w /home/sbtuser
WORKDIR /root
WORKDIR /root

CMD sbt
6 changes: 3 additions & 3 deletions graalvm-ce/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ FROM ghcr.io/graalvm/graalvm-ce:${BASE_IMAGE_TAG:-java11-21.3.0}

# Env variables
ARG SCALA_VERSION
ENV SCALA_VERSION ${SCALA_VERSION:-2.13.8}
ENV SCALA_VERSION ${SCALA_VERSION:-2.13.9}
ARG SBT_VERSION
ENV SBT_VERSION ${SBT_VERSION:-1.6.2}
ENV JAVA_OPTS -XX:+UseG1GC
ENV JAVA_OPTS -XX:+UseG1GC
ARG USER_ID
ENV USER_ID ${USER_ID:-1001}
ARG GROUP_ID
ARG GROUP_ID
ENV GROUP_ID ${GROUP_ID:-1001}

# Install sbt
Expand Down
8 changes: 4 additions & 4 deletions openjdk-oracle/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ FROM openjdk:${BASE_IMAGE_TAG:-11.0.16-jdk-oraclelinux8}

# Env variables
ARG SCALA_VERSION
ENV SCALA_VERSION ${SCALA_VERSION:-2.13.8}
ENV SCALA_VERSION ${SCALA_VERSION:-2.13.9}
ARG SBT_VERSION
ENV SBT_VERSION ${SBT_VERSION:-1.6.2}
ARG USER_ID
ENV USER_ID ${USER_ID:-1001}
ARG GROUP_ID
ARG GROUP_ID
ENV GROUP_ID ${GROUP_ID:-1001}

# Install sbt
Expand Down Expand Up @@ -48,7 +48,7 @@ RUN groupadd --gid $GROUP_ID sbtuser && useradd --gid $GROUP_ID --uid $USER_ID s
USER sbtuser

# Switch working directory
WORKDIR /home/sbtuser
WORKDIR /home/sbtuser

# Prepare sbt (warm cache)
RUN \
Expand All @@ -74,6 +74,6 @@ RUN \
## Users wanting to use this container as non-root should combine the two following arguments
## -u sbtuser
## -w /home/sbtuser
WORKDIR /root
WORKDIR /root

CMD sbt
6 changes: 3 additions & 3 deletions openjdk/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ FROM openjdk:${BASE_IMAGE_TAG:-8u342-jdk-bullseye}

# Env variables
ARG SCALA_VERSION
ENV SCALA_VERSION ${SCALA_VERSION:-2.13.8}
ENV SCALA_VERSION ${SCALA_VERSION:-2.13.9}
ARG SBT_VERSION
ENV SBT_VERSION ${SBT_VERSION:-1.6.2}
ARG USER_ID
ENV USER_ID ${USER_ID:-1001}
ARG GROUP_ID
ARG GROUP_ID
ENV GROUP_ID ${GROUP_ID:-1001}

# Install sbt
Expand Down Expand Up @@ -79,6 +79,6 @@ RUN \
## Users wanting to use this container as non-root should combine the two following arguments
## -u sbtuser
## -w /home/sbtuser
WORKDIR /root
WORKDIR /root

CMD sbt

0 comments on commit 78392c2

Please sign in to comment.