Skip to content

Commit 4a3f534

Browse files
committed
Bring in all image changes
1 parent f9663db commit 4a3f534

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

haskell/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:bookwork-slim
1+
FROM debian:bookworm-slim
22

33
RUN \
44
apt-get update && \

rust/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.67.1-slim-buster
1+
FROM rust:1.88.0-slim
22

33
ARG DEBIAN_FRONTEND=noninterative
44

@@ -9,11 +9,11 @@ ARG SCCACHE_URL=https://github.com/mozilla/sccache/releases/download/${SCCACHE_F
99
ENV SCCACHE_CACHE_SIZE=100G
1010
ENV SCCACHE_DIR=/opt/sccache
1111

12-
RUN mkdir -p $SCCACHE_DIR
12+
RUN mkdir -p "$SCCACHE_DIR"
1313

1414
RUN \
15-
apt-get update \
16-
&& apt-get install -y libssl-dev pkg-config curl build-essential make musl-tools \
15+
apt-get update \
16+
&& apt-get install -y build-essential curl libssl-dev make musl-tools pkg-config \
1717
&& curl -sSL -o /tmp/sccache.tgz "${SCCACHE_URL}" \
1818
&& mkdir /tmp/sccache \
1919
&& tar --strip-components=1 -C /tmp/sccache -xzf /tmp/sccache.tgz \

0 commit comments

Comments
 (0)