Skip to content

Instantly share code, notes, and snippets.

@nehabhardwaj01
Created June 20, 2019 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nehabhardwaj01/ad604bc353f6b49eb5ff9f4dce3c2143 to your computer and use it in GitHub Desktop.
Save nehabhardwaj01/ad604bc353f6b49eb5ff9f4dce3c2143 to your computer and use it in GitHub Desktop.
FROM ubuntu:16.04
MAINTAINER Neha Bhardwaj
# Install cron
RUN apt-get update && apt-get install -y cron
# Add files
ADD run.sh /run.sh
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /run.sh /entrypoint.sh
ENTRYPOINT /entrypoint.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment