Skip to content

Commit 7f17fc2

Browse files
committed
build: update docker images
1 parent 2cc1814 commit 7f17fc2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docker/api/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.72-alpine AS builder
1+
FROM rust:1.76-alpine AS builder
22

33
ENV RUSTFLAGS "-C target-feature=-crt-static"
44

@@ -17,7 +17,7 @@ COPY web/src ./src
1717

1818
RUN cargo build --release
1919

20-
FROM alpine:3.18
20+
FROM alpine:3.19
2121

2222
RUN apk add --no-cache dumb-init libgcc
2323

docker/bot/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.72-slim-buster AS builder
1+
FROM rust:1.76-slim-bookworm AS builder
22

33
RUN apt update && apt install -y musl-dev libpq-dev
44

@@ -8,9 +8,9 @@ WORKDIR /build
88

99
RUN cp /usr/local/cargo/bin/diesel ./
1010

11-
FROM python:3.11-slim-buster
11+
FROM python:3.12-slim-bookworm
1212

13-
RUN apt update && apt install -y dumb-init git gcc netcat libpq-dev
13+
RUN apt update && apt install -y dumb-init git gcc netcat-traditional libpq-dev
1414
RUN rm -rf /var/lib/apt/lists/*
1515

1616
WORKDIR /app

docker/web/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16-alpine AS builder
1+
FROM node:20-alpine AS builder
22

33
RUN npm install -g -f yarn
44

@@ -20,7 +20,7 @@ COPY web/store ./store
2020

2121
RUN yarn build
2222

23-
FROM node:16-alpine
23+
FROM node:20-alpine
2424

2525
RUN apk add --no-cache dumb-init
2626

0 commit comments

Comments
 (0)