Skip to content

Commit

Permalink
build: update docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
chamburr committed Feb 10, 2024
1 parent 2cc1814 commit eac3e30
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.72-alpine AS builder
FROM rust:1.76-alpine AS builder

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

Expand All @@ -17,7 +17,7 @@ COPY web/src ./src

RUN cargo build --release

FROM alpine:3.18
FROM alpine:3.19

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

Expand Down
4 changes: 2 additions & 2 deletions docker/bot/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.72-slim-buster AS builder
FROM rust:1.76-slim-bookworm AS builder

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

Expand All @@ -8,7 +8,7 @@ WORKDIR /build

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

FROM python:3.11-slim-buster
FROM python:3.12-slim-bookworm

RUN apt update && apt install -y dumb-init git gcc netcat libpq-dev
RUN rm -rf /var/lib/apt/lists/*
Expand Down
4 changes: 2 additions & 2 deletions docker/web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine AS builder
FROM node:20-alpine AS builder

RUN npm install -g -f yarn

Expand All @@ -20,7 +20,7 @@ COPY web/store ./store

RUN yarn build

FROM node:16-alpine
FROM node:20-alpine

RUN apk add --no-cache dumb-init

Expand Down

0 comments on commit eac3e30

Please sign in to comment.