Skip to content

Commit

Permalink
bump images
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Nov 1, 2024
1 parent 371efc2 commit 3aeb94e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 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.0.2_13_1.10.2_3.5.1",
"image": "sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.2_13_1.10.4_3.5.2",
"customizations": {
"vscode": {
"extensions": [
Expand Down
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
mongodb:
image: mongo:7.0.14-jammy
image: mongo:7.0.15-jammy
restart: unless-stopped
command: mongod --bind_ip_all --replSet rs0
healthcheck:
Expand All @@ -16,14 +16,14 @@ services:
- ./scripts:/scripts

mongodb_secondary:
image: mongo:7.0.14-jammy
image: mongo:7.0.15-jammy
restart: unless-stopped
command: mongod --bind_ip_all --replSet rs0
networks:
- lila-network

redis:
image: redis:7.4.0-alpine3.20
image: redis:7.4.1-alpine3.20
restart: unless-stopped
networks:
- lila-network
Expand Down Expand Up @@ -76,7 +76,7 @@ services:
- ./conf/lila-ws.conf:/lila-ws.conf

nginx:
image: nginx:1.27.1-alpine3.20-slim
image: nginx:1.27.2-alpine3.20-slim
restart: unless-stopped
networks:
- lila-network
Expand Down Expand Up @@ -146,7 +146,7 @@ services:
- pgn-viewer

lila_engine:
image: rust:1.81.0-slim-bookworm
image: rust:1.82.0-slim-bookworm
working_dir: /lila-engine
entrypoint: cargo run -- --bind 0.0.0.0:9666 --mongodb mongodb://mongodb
restart: unless-stopped
Expand Down Expand Up @@ -325,7 +325,7 @@ services:
- search

lila_gif:
image: rust:1.81.0-slim-bookworm
image: rust:1.82.0-slim-bookworm
working_dir: /lila-gif
entrypoint: cargo run -- --bind 0.0.0.0:6175
restart: unless-stopped
Expand Down Expand Up @@ -354,7 +354,7 @@ services:
- thumbnails

mailpit:
image: axllent/mailpit:v1.20.4
image: axllent/mailpit:v1.21.0
restart: unless-stopped
ports:
- 8025:8025
Expand Down
4 changes: 2 additions & 2 deletions docker/ci.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ RUN mkdir /seeded \
--tokens

##################################################################################
FROM sbtscala/scala-sbt:eclipse-temurin-alpine-21.0.2_13_1.10.2_3.5.1 AS lilawsbuilder
FROM sbtscala/scala-sbt:eclipse-temurin-alpine-21.0.2_13_1.10.4_3.5.2 AS lilawsbuilder

COPY repos/lila-ws /lila-ws
WORKDIR /lila-ws
RUN sbt stage

##################################################################################
FROM sbtscala/scala-sbt:eclipse-temurin-alpine-21.0.2_13_1.10.2_3.5.1 AS lilabuilder
FROM sbtscala/scala-sbt:eclipse-temurin-alpine-21.0.2_13_1.10.4_3.5.2 AS lilabuilder

COPY --from=node /lila /lila
WORKDIR /lila
Expand Down
2 changes: 1 addition & 1 deletion docker/python.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM eclipse-temurin:22.0.2_9-jdk-alpine

COPY --from=python:3.12.6-alpine3.20 / /
COPY --from=python:3.13.0-alpine3.20 / /

RUN pip install --upgrade pip \
&& pip install \
Expand Down
2 changes: 1 addition & 1 deletion docker/sbt.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM sbtscala/scala-sbt:eclipse-temurin-alpine-21.0.2_13_1.10.2_3.5.1
FROM sbtscala/scala-sbt:eclipse-temurin-alpine-21.0.2_13_1.10.4_3.5.2

ARG USER_ID
ARG GROUP_ID
Expand Down
4 changes: 2 additions & 2 deletions lila-docker
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,11 @@ rust_cmd() {
cargo build --release --manifest-path command/Cargo.toml
eval "$COMMAND_EXE $@"
elif [ "$(uname)" = "Darwin" ]; then
docker run --rm -v "$PWD/command:/command" -w /command messense/cargo-zigbuild:0.19.2 \
docker run --rm -v "$PWD/command:/command" -w /command messense/cargo-zigbuild:0.19.4 \
cargo zigbuild --release --target universal2-apple-darwin
./command/target/universal2-apple-darwin/release/command "$@"
else
docker run --rm -v "$PWD/command:/command" -w /command messense/cargo-zigbuild:0.19.2 \
docker run --rm -v "$PWD/command:/command" -w /command messense/cargo-zigbuild:0.19.4 \
cargo zigbuild --release
./command/target/release/command "$@"
fi
Expand Down

0 comments on commit 3aeb94e

Please sign in to comment.