forked from DougTidwell/podman-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed sudo access from the Dockerfile.
- Loading branch information
1 parent
39c1851
commit 910b834
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
FROM registry.centos.org/che-stacks/centos-stack-base | ||
|
||
RUN sudo dnf -y update && \ | ||
sudo dnf -y install centos-release-scl && \ | ||
sudo dnf -y install git && \ | ||
sudo dnf -y install gcc && \ | ||
sudo dnf -y install libedit-devel && \ | ||
sudo dnf -y install python-yaml && \ | ||
sudo dnf -y install make | ||
RUN dnf -y update && \ | ||
dnf -y install centos-release-scl && \ | ||
dnf -y install git && \ | ||
dnf -y install gcc && \ | ||
dnf -y install libedit-devel && \ | ||
dnf -y install python-yaml && \ | ||
dnf -y install make | ||
|
||
CMD tail -f /dev/null |