diff options
author | Nikolaos Boutalas <nikolaos@boutalas.me> | 2024-01-05 03:50:50 +0200 |
---|---|---|
committer | Nikolaos Boutalas <nikolaos@boutalas.me> | 2024-03-17 11:48:24 +0200 |
commit | 7217241c87516875cc6f882a9125403b97bf3e06 (patch) | |
tree | 3ddfc0e0d85d41fe141b87c099f82f676bfac545 /Dockerfile.ubuntu | |
parent | 77475705a59c9c347e8face58cf17b051f84f63e (diff) |
Diffstat (limited to 'Dockerfile.ubuntu')
-rw-r--r-- | Dockerfile.ubuntu | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu deleted file mode 100644 index 2668fad..0000000 --- a/Dockerfile.ubuntu +++ /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"] |