Skip to content

Commit db27dcf

Browse files
committed
Refactor Dockerfile environment variable syntax and streamline Python installation
- Updated environment variable syntax for consistency. - Removed unnecessary package from Python installation command to optimize the build process.
1 parent c5a0574 commit db27dcf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ FROM ubuntu:22.04
22
USER root
33

44
# Set environment variables
5-
ENV LANG ja_JP.UTF-8
6-
ENV LANGUAGE ja_JP:ja
7-
ENV LC_ALL ja_JP.UTF-8
8-
ENV TZ JST-9
9-
ENV TERM xterm
5+
ENV LANG=ja_JP.UTF-8
6+
ENV LANGUAGE=ja_JP:ja
7+
ENV LC_ALL=ja_JP.UTF-8
8+
ENV TZ=JST-9
9+
ENV TERM=xterm
1010
ENV DEBIAN_FRONTEND=noninteractive
1111

1212
# Update and install system dependencies
@@ -38,7 +38,7 @@ RUN wget http://sourceforge.net/projects/mmdagent/files/MMDAgent_Example/MMDAgen
3838
# Install Python 3.12
3939
RUN add-apt-repository ppa:deadsnakes/ppa \
4040
&& apt-get update \
41-
&& apt-get install -y python3.12 python3.12-venv python3.12-dev python3.12-distutils \
41+
&& apt-get install -y python3.12 python3.12-venv python3.12-dev \
4242
&& rm -rf /var/lib/apt/lists/*
4343

4444
# Install uv

0 commit comments

Comments
 (0)