mirror of
https://github.com/zhigang1992/onpremise.git
synced 2026-01-12 17:32:47 +08:00
7 lines
204 B
Docker
7 lines
204 B
Docker
ARG BASE_IMAGE
|
|
FROM ${BASE_IMAGE}
|
|
RUN apt-get update && apt-get install -y --no-install-recommends cron && \
|
|
rm -r /var/lib/apt/lists/*
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|