first commit

This commit is contained in:
2022-12-27 21:59:06 +01:00
commit 7ae0b00241
29 changed files with 1157 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
FROM ubuntu:22.04
RUN apt-get update && apt-get -y upgrade
RUN apt-get -y install openssl docker.io curl dos2unix
COPY *.sh /opt/
RUN chmod +x /opt/*.sh ; dos2unix /opt/*.sh
CMD ["bash", "/opt/entrypoint.sh"]