Skip to content
This repository has been archived by the owner on Mar 22, 2021. It is now read-only.

Dockerfile: Update version and add verification #75

Closed
wants to merge 2 commits into from
Closed
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
15 changes: 13 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.fedoraproject.org/fedora:25
FROM registry.fedoraproject.org/fedora:27
MAINTAINER Jonathan Lebon <[email protected]>

# NB: we install libyaml-devel so that we can use
Expand All @@ -15,7 +15,18 @@ RUN dnf install -y \
python3-pip \
libyaml-devel \
nmap-ncat && \
dnf clean all
dnf clean all && \
rpm -V \
git \
gcc \
sudo \
docker \
findutils \
python3-devel \
redhat-rpm-config \
python3-pip \
libyaml-devel \
nmap-ncat

# There's a tricky bit here. We mount $PWD at $PWD in the
# container so that when we do the nested docker run in the
Expand Down