Skip to content

Commit a773275

Browse files
committed
Dockerfile: Ensure that curl is installed
1 parent 55d3011 commit a773275

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
FROM eclipse-temurin:8 as build-jar
2+
3+
RUN apt update
4+
RUN apt install -y curl
5+
26
ARG SBT_VERSION=1.5.2
37
RUN cd /opt && curl -fSsL https://github.com/sbt/sbt/releases/download/v${SBT_VERSION}/sbt-${SBT_VERSION}.tgz | tar xvz
48
ENV PATH=/opt/sbt/bin:$PATH

0 commit comments

Comments
 (0)