Skip to content

Commit

Permalink
don't install curl when not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
femnad committed Dec 16, 2023
1 parent f78d0b1 commit d20aa1f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.fedora
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Mostly intended for debugging full provisioning runs.
from fedora:39

run dnf install -y gnupg2 golang systemd
run dnf update -y && dnf install -y gnupg2 golang systemd

copy . /root/fup/
workdir /root/fup
Expand Down
2 changes: 1 addition & 1 deletion terraform/Dockerfile.fedora-ci
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from fedora:39

run dnf update -y && dnf install -y ca-certificates curl gnupg2 golang
run dnf update -y && dnf install -y ca-certificates gnupg2 golang
2 changes: 1 addition & 1 deletion terraform/Dockerfile.ubuntu-ci
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from ubuntu:mantic

run apt update -y && apt install -y ca-certificates curl gnupg2 golang
run apt update -y && apt install -y ca-certificates gnupg2 golang
4 changes: 2 additions & 2 deletions tests/image/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from ubuntu:mantic

run apt update -y && apt install -y curl gnupg2 systemd
run apt update -y && apt install -y gnupg2 systemd

cmd [ "/bin/systemd" ]
cmd ["/bin/systemd"]

0 comments on commit d20aa1f

Please sign in to comment.