Last active
November 26, 2024 08:45
-
-
Save elico/8635ff1476b5fd9193a84dfe8c15da56 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:22.04 | |
RUN apt-get update && \ | |
apt-get upgrade -y && \ | |
apt-get install -y ansible && \ | |
apt-get clean autoclean && \ | |
apt-get autoremove --yes && \ | |
rm -rf /var/lib/{apt,dpkg,cache,log}/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment