exaone-finetuning / Dockerfile
amis5895's picture
Deploy EXAONE fine-tuning project with all files
44c69fc
raw
history blame contribute delete
450 Bytes
FROM python:3.9-slim
# ์‹œ์Šคํ…œ ํŒจํ‚ค์ง€ ์„ค์น˜
RUN apt-get update && apt-get install -y \
wget \
curl \
ca-certificates \
git \
&& rm -rf /var/lib/apt/lists/*
# ์ž‘์—… ๋””๋ ‰ํ† ๋ฆฌ ์„ค์ •
WORKDIR /app
# Python ํŒจํ‚ค์ง€ ์„ค์น˜
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜ ํŒŒ์ผ ๋ณต์‚ฌ
COPY . .
# ํฌํŠธ ์„ค์ •
EXPOSE 7860
# ์‹คํ–‰ ์Šคํฌ๋ฆฝํŠธ
CMD ["python", "app.py"]