Skip to content

Commit

Permalink
Feat: Dockerfile 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
pjh5365 committed Sep 7, 2024
1 parent 6a4d681 commit 5e2c65d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ WORKDIR /app

# 필요한 패키지 설치 및 타임존 설정 (tzdata 포함)
RUN apt-get update && \
apt-get install -y python3-pip tzdata libmagic-dev && \
apt-get install -y python3-pip tzdata libmagic-dev libmariadb-dev-compat libmariadb-dev && \
apt-get clean

# 타임존 설정 (Asia/Seoul)
Expand Down Expand Up @@ -35,7 +35,7 @@ WORKDIR /app
# 타임존 설정 (Asia/Seoul)
ENV TZ=Asia/Seoul
RUN apt-get update && \
apt-get install -y tzdata libmagic-dev && \
apt-get install -y tzdata libmagic-dev libmariadb-dev-compat libmariadb-dev && \
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
apt-get clean

Expand Down

0 comments on commit 5e2c65d

Please sign in to comment.