summaryrefslogtreecommitdiff
path: root/Dockerfile.ubuntu
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile.ubuntu')
-rw-r--r--Dockerfile.ubuntu19
1 files changed, 19 insertions, 0 deletions
diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu
new file mode 100644
index 0000000..2668fad
--- /dev/null
+++ b/Dockerfile.ubuntu
@@ -0,0 +1,19 @@
+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"]