Skip to content

Commit

Permalink
v1.0.0-SNAPSHOT-6
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin committed Feb 12, 2022
1 parent d3879fc commit 6e1a226
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import scala.sys.process.Process

organization := "net.yoshinorin"
name := "qualtet"
version := "v1.0.0-SNAPSHOT-5"
version := "v1.0.0-SNAPSHOT-6"
scalaVersion := "2.13.5"

scalacOptions ++= Seq(
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ RUN apt-get update -y \

WORKDIR /usr/opt

RUN git clone --depth 1 --branch v1.0.0-SNAPSHOT-5 https://github.com/yoshinorin/qualtet.git
RUN git clone --depth 1 --branch v1.0.0-SNAPSHOT-6 https://github.com/yoshinorin/qualtet.git

WORKDIR /usr/opt/qualtet

COPY entry-point.sh entry-point.sh

RUN rm -rf scripts docs docker .github .gitignore .editorconfig .git .env .env.example \
&& sbt assembly exit \
&& cp ./target/scala-2.13/qualtet-assembly-v1.0.0-SNAPSHOT-5.jar qualtet-assembly.jar \
&& cp ./target/scala-2.13/qualtet-assembly-v1.0.0-SNAPSHOT-6.jar qualtet-assembly.jar \
&& chmod +x entry-point.sh

ENTRYPOINT [ "/usr/opt/qualtet/entry-point.sh" ]

0 comments on commit 6e1a226

Please sign in to comment.