Update commit

This commit is contained in:
kyy
2025-01-08 15:06:58 +09:00
parent 8eb945687d
commit 4ced8db541
9 changed files with 78 additions and 95 deletions

View File

@@ -9,6 +9,12 @@ WORKDIR /opt/workspace
# Use a faster mirror for apt-get
RUN sed -i 's/archive.ubuntu.com/mirror.kakao.com/g' /etc/apt/sources.list
# Install tzdata and set the timezone to Asia/Seoul
RUN apt-get update && apt-get install -y tzdata && \
ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime && \
echo "Asia/Seoul" > /etc/timezone && \
dpkg-reconfigure -f noninteractive tzdata
# Install system dependencies (including dependencies for Hugging Face login)
RUN apt-get update && apt-get install -y \
git \