10 lines
213 B
Docker
10 lines
213 B
Docker
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"]
|