Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mulcahys committed Jun 21, 2017
0 parents commit aea45db
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# quaytest

0 comments on commit aea45db

Please sign in to comment.