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

10 lines
241 B
Docker

FROM ubuntu:22.04
RUN apt-get update && apt-get -y upgrade
RUN apt-get -y install cron curl jq dos2unix
COPY entrypoint.sh /opt/entrypoint.sh
RUN dos2unix /opt/entrypoint.sh ; chmod +x /opt/entrypoint.sh
CMD ["sh", "/opt/entrypoint.sh"]