summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile19
1 files changed, 0 insertions, 19 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 2668fad..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,19 +0,0 @@
-FROM ubuntu:latest
-
-RUN apt-get update && \
- apt-get install -y ansible python3-apt
-
-RUN apt-get install -y sudo \
- && 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"]