Skip to content

Commit

Permalink
Use a consistent version of Debian to avoid a glibc version mismatch (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jwillikers authored Nov 10, 2023
1 parent 3083516 commit 4bf2eae
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,6 +1,6 @@
ARG VERSION=v0.10.1

FROM rust:1.63.0-slim AS builder
FROM rust:1.63.0-slim-bullseye AS builder

ARG VERSION

Expand All @@ -17,7 +17,7 @@ ENV CARGO_NET_GIT_FETCH_WITH_CLI true

RUN cargo install --locked --path .

FROM debian:buster-slim
FROM debian:bullseye-slim

RUN adduser --disabled-password --uid 1000 --home /data --gecos "" electrs
USER electrs
Expand Down

0 comments on commit 4bf2eae

Please sign in to comment.