Files
log_collection_docker/data/setup/build/Dockerfile
2022-12-27 21:59:06 +01:00

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"]