Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/debian:12.11 AS bootstrap
FROM docker.io/debian:13.2 AS bootstrap

RUN apt-get update && apt-get install -y \
build-essential \
Expand All @@ -19,7 +19,7 @@ RUN spack -e /root/spack-env install --fail-fast
RUN spack view add -i /bootstrap-view $(spack find -H)


FROM docker.io/debian:12.11 AS base
FROM docker.io/debian:13.2 AS base

RUN apt-get update && apt-get install -y \
libc6-dev
Expand All @@ -39,7 +39,7 @@ RUN spack clean -a
RUN spack gc -e /root/spack-env -y -b


FROM docker.io/debian:12.11-slim
FROM docker.io/debian:13.2-slim

RUN rm -rf /usr/bin /usr/sbin

Expand Down