Skip to content

Commit

Permalink
update scala version in scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
hrj committed Oct 25, 2024
1 parent 355e8c5 commit f473742
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ENV PATH=$PATH:${JAVA_HOME}/bin

FROM base-core
WORKDIR /lc-core
COPY --from=builder /build/target/scala-3.5.0/LibreCaptcha.jar .
COPY --from=builder /build/target/scala-3.5.2/LibreCaptcha.jar .
RUN mkdir data/

EXPOSE 8888
Expand Down
2 changes: 1 addition & 1 deletion Runner.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV PATH=$PATH:${JAVA_HOME}/bin

FROM base-core
RUN mkdir /lc-core
COPY target/scala-3.5.0/LibreCaptcha.jar /lc-core
COPY target/scala-3.5.2/LibreCaptcha.jar /lc-core
WORKDIR /lc-core
RUN mkdir data/

Expand Down
2 changes: 1 addition & 1 deletion tests/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ python3 -m venv testEnv
source ./testEnv/bin/activate
pip install locust
mkdir -p data/
java -jar target/scala-3.5.0/LibreCaptcha.jar &
java -jar target/scala-3.5.2/LibreCaptcha.jar &
JAVA_PID=$!
sleep 4

Expand Down

0 comments on commit f473742

Please sign in to comment.