Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- 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
|