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