summaryrefslogtreecommitdiff
path: root/Dockerfile.fedora
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile.fedora')
-rw-r--r--Dockerfile.fedora19
1 files changed, 0 insertions, 19 deletions
diff --git a/Dockerfile.fedora b/Dockerfile.fedora
deleted file mode 100644
index b0781cd..0000000
--- a/Dockerfile.fedora
+++ /dev/null
@@ -1,19 +0,0 @@
-FROM fedora:latest
-
-RUN dnf update -y && \
- dnf install -y ansible
-
-RUN dnf install -y passwd \
- && useradd -m -s /bin/bash admin \
- && echo "admin ALL=(ALL) ALL" >> /etc/sudoers \
- && passwd -d root
-
-RUN echo 'admin:admin' | chpasswd
-
-USER admin
-WORKDIR /home/admin
-
-COPY --chown=admin . init
-WORKDIR init
-
-CMD ["/bin/bash"]