Skip to content

Commit

Permalink
fixup! missing Rust compiler in containers
Browse files Browse the repository at this point in the history
  • Loading branch information
hoh committed Jun 14, 2024
1 parent f03ae03 commit 72ce112
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packaging/debian-11.dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
FROM debian:bullseye
FROM rust:bullseye

RUN apt-get update && apt-get -y upgrade && apt-get install -y \
make \
git \
curl \
sudo \
python3-pip \
cargo \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /opt
Expand Down
2 changes: 1 addition & 1 deletion packaging/debian-12.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bookworm
FROM rust:bookworm

RUN apt-get update && apt-get -y upgrade && apt-get install -y \
make \
Expand Down
2 changes: 1 addition & 1 deletion packaging/ubuntu-22.04.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM rust:22.04

RUN apt-get update && apt-get -y upgrade && apt-get install -y \
make \
Expand Down

0 comments on commit 72ce112

Please sign in to comment.