Skip to content

Commit

Permalink
bump image versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Oct 23, 2023
1 parent 1763d51 commit d99ba96
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"image": "sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.6_3.3.1",
"image": "sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.7_3.3.1",
"customizations": {
"vscode": {
"extensions": [
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ docker compose run --rm ui bash -c "cd /pgn-viewer && pnpm install && pnpm run f
# sbt scalafmtAll
docker run --rm -v $(pwd)/repos/lila:/lila \
sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.6_3.3.1 \
sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.7_3.3.1 \
bash -c "cd /lila && sbt scalafmtAll"
```

Expand Down Expand Up @@ -162,17 +162,17 @@ Other Scalachess commands:
```bash
## compile
docker run --rm -v $(pwd)/repos/scalachess:/mnt \
sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.6_3.3.1 \
sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.7_3.3.1 \
bash -c "cd /mnt && sbt compile"
## test
docker run --rm -v $(pwd)/repos/scalachess:/mnt \
sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.6_3.3.1 \
sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.7_3.3.1 \
bash -c "cd /mnt && sbt testKit/test"
## package
docker run --rm -v $(pwd)/repos/scalachess:/mnt \
sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.6_3.3.1 \
sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.7_3.3.1 \
bash -c "cd /mnt && sbt package"
```
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
- lila-network

redis:
image: redis:7.2.1-alpine3.18
image: redis:7.2.2-alpine3.18
restart: unless-stopped
networks:
- lila-network
Expand Down Expand Up @@ -211,7 +211,7 @@ services:
- thumbnails

mailpit:
image: axllent/mailpit:v1.9.6
image: axllent/mailpit:v1.9.9
ports:
- 8025:8025
networks:
Expand Down
2 changes: 1 addition & 1 deletion docker/api-docs.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.8.0-bookworm
FROM node:20.8.1-bookworm

WORKDIR /api/doc

Expand Down
2 changes: 1 addition & 1 deletion docker/lila-fishnet.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM sbtscala/scala-sbt:eclipse-temurin-focal-17.0.8.1_1_1.9.6_3.3.1
FROM sbtscala/scala-sbt:eclipse-temurin-focal-17.0.8.1_1_1.9.7_3.3.1

WORKDIR /lila-fishnet

Expand Down
2 changes: 1 addition & 1 deletion docker/lila-search.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.6_2.13.12
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.7_2.13.12

WORKDIR /lila-search

Expand Down
2 changes: 1 addition & 1 deletion docker/lila-ws.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.6_3.3.1
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.7_3.3.1

WORKDIR /lila-ws

Expand Down
2 changes: 1 addition & 1 deletion docker/lila.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.6_3.3.1
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.7_3.3.1

WORKDIR /lila

Expand Down
2 changes: 1 addition & 1 deletion docker/pgn-viewer.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.8.0-bookworm
FROM node:20.8.1-bookworm

RUN npm install -g pnpm

Expand Down
2 changes: 1 addition & 1 deletion docker/ui.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.8.0-bookworm
FROM node:20.8.1-bookworm

RUN git config --global --add safe.directory /lila
RUN git config --global --add safe.directory /chessground
Expand Down
2 changes: 1 addition & 1 deletion lila-docker
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ run_formatter() {
pnpm install && pnpm run format"

docker run --rm -v $(pwd)/repos/lila:/lila \
sbtscala/scala-sbt:eclipse-temurin-focal-17.0.8.1_1_1.9.6_3.3.1 \
sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.7_3.3.1 \
bash -c "cd /lila && sbt scalafmtAll"
}

Expand Down

0 comments on commit d99ba96

Please sign in to comment.