-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
gongqianjun
committed
Feb 27, 2024
1 parent
b3f5796
commit 754e45a
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,14 @@ FROM codercom/enterprise-base:ubuntu | |
LABEL MAINTAINER [email protected] | ||
LABEL VERSION 1.0.1 | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
ENV LANG='C.UTF-8' LC_ALL='C.UTF-8' | ||
ENV TZ=Asia/Shanghai | ||
|
||
USER root | ||
|
||
RUN cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo 'Asia/Shanghai' > /etc/timezone && \ | ||
RUN apt install -y tzdata && \ | ||
# 修改用户shell | ||
usermod -s /bin/zsh coder | ||
|
||
|