mirror of
https://github.com/invoiceninja/dockerfiles.git
synced 2026-01-07 23:17:25 +01:00
10 lines
212 B
Docker
10 lines
212 B
Docker
FROM mysql:5
|
|
ENV force_color_prompt yes
|
|
|
|
RUN apt-get update;
|
|
RUN apt-get install -y cron;
|
|
|
|
ENTRYPOINT \
|
|
service cron start; \
|
|
printenv | grep -v "no_proxy" >> /etc/environment; \
|
|
docker-entrypoint.sh mysqld |