Skip to content

Commit

Permalink
Bump Alpine to 3.20
Browse files Browse the repository at this point in the history
  • Loading branch information
aveyrenc committed Jul 30, 2024
1 parent 4b1aea0 commit fce36e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM rust:alpine as builder
FROM rust:alpine3.20 as builder
RUN apk add --no-cache build-base

# Don't download the entire crates.io package index. Fetch only the index
Expand All @@ -13,7 +13,7 @@ COPY Cargo.toml Cargo.lock ./
COPY src/ src/
RUN cargo build --release

FROM alpine:3.18
FROM alpine:3.20
RUN addgroup -S merino && \
adduser -S -G merino merino && \
apk add --no-cache tini
Expand Down

0 comments on commit fce36e2

Please sign in to comment.