This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:15.10 | |
MAINTAINER Nic Roland "nicroland9@gmail.com" | |
RUN apt-get update && \ | |
apt-get install -y xdotool cron && \ | |
apt-get clean | |
RUN echo "20 * * * * xdotool movemouse 15 15 click 1" > mouse.cron | |
RUN crontab mouse.cron | |
ENTRYPOINT cron -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment