浏览代码

awg timezone

anweiguo 1 周之前
父节点
当前提交
5a22957042
共有 1 个文件被更改,包括 8 次插入7 次删除
  1. 8 7
      Dockerfile

+ 8 - 7
Dockerfile

@@ -1,13 +1,14 @@
-
-FROM ubuntu:latest
-# 安装 tzdata 包并设置时区
-RUN apt-get update && apt-get install -y tzdata
-ENV TZ=Asia/Shanghai
-RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
-
 # 使用官方 Python 镜像作为基础镜像
 FROM 192.168.1.36:5000/python:3.12
 
+ENV TZ=Asia/Shanghai
+RUN apt-get update && \
+    apt-get install -y tzdata && \
+    ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
+    echo $TZ > /etc/timezone && \
+    DEBIAN_FRONTEND=noninteractive dpkg-reconfigure tzdata && \
+    apt-get clean
+
 ENV LANG=en_US.UTF-8
 # 设置工作目录
 WORKDIR /app