Skip to content

Commit

Permalink
Removed sudo access from the Dockerfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
DougTidwell committed Oct 11, 2018
1 parent 39c1851 commit 910b834
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Dockerfile
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

0 comments on commit 910b834

Please sign in to comment.