From aea45db107796c34f9d26a7f781e7a1b2d8ad009 Mon Sep 17 00:00:00 2001 From: Stephen Mulcahy Date: Wed, 21 Jun 2017 09:54:18 +0100 Subject: [PATCH] first commit --- Dockerfile | 16 ++++++++++++++++ README.md | 1 + 2 files changed, 17 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..24de5f2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM python:2.7-slim + +LABEL version="v0.0.0" +LABEL description="quay test" + +RUN apt-get update && apt-get install -y --no-install-recommends \ + coreutils \ + curl \ + busybox-static \ + git \ + && rm -rf /var/lib/apt/lists/* + +RUN mkdir -p /var/spool/cron/crontabs +COPY crontab /root/crontab +RUN /bin/busybox crontab -u root /root/crontab +CMD ["/bin/busybox", "crond", "-f", "-L", "/dev/stdout"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..0b82179 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# quaytest