Skip to content

Commit c14d606

Browse files
committed
Fix oversight in scala dockerfile
1 parent 362f57c commit c14d606

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

dockerfiles/scala-3.3.5.Dockerfile

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# syntax=docker/dockerfile:1.7-labs
2-
FROM maven:3.9.9-eclipse-temurin-17-alpine
2+
FROM maven:3.9.9-eclipse-temurin-23-alpine
3+
4+
RUN apk add --no-cache bash wget tar && \
5+
wget -O sbt.tgz https://github.com/sbt/sbt/releases/download/v1.10.11/sbt-1.10.11.tgz && \
6+
tar -xzf sbt.tgz -C /usr/local && \
7+
ln -s /usr/local/sbt/bin/sbt /usr/local/bin/sbt && \
8+
rm sbt.tgz
39

410
# Ensures the container is re-built if dependency files change
511
ENV CODECRAFTERS_DEPENDENCY_FILE_PATHS="build.sbt"

0 commit comments

Comments
 (0)