Skip to content

Commit

Permalink
bump images
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Nov 5, 2023
1 parent 7867404 commit 4f80bf6
Show file tree
Hide file tree
Showing 9 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.7_3.3.1",
"image": "sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.1_12_1.9.7_3.3.1",
"customizations": {
"vscode": {
"extensions": [
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ To watch for Typescript/SCSS changes and automatically recompile:
docker compose run --rm ui bash -c "/lila/ui/build -w"
```

## Updating Routes
### Updating Routes

If you edit the `conf/routes` file, you'll need to update the route cache.
Expand Down Expand Up @@ -163,21 +163,21 @@ Other Scalachess commands:
```bash
## compile
docker run --rm -v $(pwd)/repos/scalachess:/mnt \
sbtscala/scala-sbt:eclipse-temurin-jammy-21_35_1.9.7_3.3.1 \
sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.1_12_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.7_3.3.1 \
sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.1_12_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.7_3.3.1 \
sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.1_12_1.9.7_3.3.1 \
bash -c "cd /mnt && sbt package"
```

## Dartchess:
### Dartchess:

```bash
## run formatter
Expand Down
4 changes: 2 additions & 2 deletions command/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.2-alpine3.18
image: redis:7.2.3-alpine3.18
restart: unless-stopped
networks:
- lila-network
Expand Down Expand Up @@ -220,7 +220,7 @@ services:
- thumbnails

mailpit:
image: axllent/mailpit:v1.9.9
image: axllent/mailpit:v1.9.10
ports:
- 8025:8025
networks:
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.7_2.13.12
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.1_12_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.7_3.3.1
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.1_12_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.7_3.3.1
FROM sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.1_12_1.9.7_3.3.1

WORKDIR /lila

Expand Down
2 changes: 1 addition & 1 deletion docker/python.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:21_35-jdk-alpine
FROM eclipse-temurin:21.0.1_12-jdk-alpine

COPY --from=python:3.12.0-alpine3.18 / /

Expand Down
2 changes: 1 addition & 1 deletion lila-docker
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ run_formatter() {
(test -f /pgn-viewer/package.json && cd /pgn-viewer && pnpm install && pnpm run format) || echo 'Skipping pgn-viewer'"

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

Expand Down

0 comments on commit 4f80bf6

Please sign in to comment.