FROM python:3.6-slim
MAINTAINER whx3000 <wanghaoxi3000@163.com>
RUN apt-get update && \
apt-get install -y --no-install-recommends \
cron && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean
RUN chmod +x ./docker-entrypoint.sh
ENV LC_ALL C.UTF-8
ENTRYPOINT ["./docker-entrypoint.sh"]
本文字数 0 | 阅读时长 ≈ 0 分钟