Skip to content

Commit f473742

Browse files
committed
update scala version in scripts
1 parent 355e8c5 commit f473742

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
3131

3232
FROM base-core
3333
WORKDIR /lc-core
34-
COPY --from=builder /build/target/scala-3.5.0/LibreCaptcha.jar .
34+
COPY --from=builder /build/target/scala-3.5.2/LibreCaptcha.jar .
3535
RUN mkdir data/
3636

3737
EXPOSE 8888

Runner.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ENV PATH=$PATH:${JAVA_HOME}/bin
66

77
FROM base-core
88
RUN mkdir /lc-core
9-
COPY target/scala-3.5.0/LibreCaptcha.jar /lc-core
9+
COPY target/scala-3.5.2/LibreCaptcha.jar /lc-core
1010
WORKDIR /lc-core
1111
RUN mkdir data/
1212

tests/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ python3 -m venv testEnv
44
source ./testEnv/bin/activate
55
pip install locust
66
mkdir -p data/
7-
java -jar target/scala-3.5.0/LibreCaptcha.jar &
7+
java -jar target/scala-3.5.2/LibreCaptcha.jar &
88
JAVA_PID=$!
99
sleep 4
1010

0 commit comments

Comments
 (0)