You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 line
623B

  1. FROM python:3.10-slim-bullseye
  2. LABEL maintainer="foo@bar.com"
  3. ARG TZ='Asia/Shanghai'
  4. # RUN echo /etc/apt/sources.list
  5. # RUN sed -i 's/deb.debian.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.list
  6. RUN sed -i 's/deb.debian.org/mirrors.aliyun.com/g' /etc/apt/sources.list
  7. # Set the timezone and configure tzdata
  8. RUN apt-get update \
  9. && apt-get install -y --no-install-recommends bash ffmpeg espeak libavcodec-extra \
  10. && apt-get install -y --no-install-recommends tzdata \
  11. && ln -sf /usr/share/zoneinfo/$TZ /etc/localtime \
  12. && dpkg-reconfigure --frontend noninteractive tzdata \
  13. && apt-get clean