Spaces:
Sleeping
Sleeping
File size: 986 Bytes
42478ea f0556b9 42478ea f0556b9 c6a6e7c f0556b9 42478ea 72a9ec5 c6a6e7c 72a9ec5 f0556b9 c6a6e7c 42478ea f0556b9 c6a6e7c 72a9ec5 f0556b9 c6a6e7c 42478ea |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# 1. νμ΄μ¬ λ²μ μ 3.11μΌλ‘ μ
κ·Έλ μ΄λν©λλ€. (TypeError ν΄κ²°)
FROM python:3.11-slim
# 2. μμ€ν
ν¨ν€μ§λ₯Ό μ€μΉν©λλ€.
RUN apt-get update && apt-get install -y \
build-essential \
curl \
git \
git-lfs \
&& rm -rf /var/lib/apt/lists/*
# 3. μμ
λλ ν°λ¦¬λ₯Ό λ§λ€κ³ μ΄λν©λλ€.
WORKDIR /app
# 4. Git LFSλ₯Ό νμ±ννκ³ , νμ¬ ν΄λμ λͺ¨λ νμΌμ 볡μ¬ν©λλ€.
# COPY μ΄μ μ git lfs installμ μ€ννλ κ²μ΄ μ€μ!
RUN git lfs install
COPY . .
# 5. Git LFSλ₯Ό ν΅ν΄ μ€μ λμ©λ νμΌλ€μ λ€μ΄λ‘λν©λλ€.
RUN git lfs pull
# 6. requirements.txtμ λͺ
μλ νμ΄μ¬ λΌμ΄λΈλ¬λ¦¬λ€μ μ€μΉν©λλ€.
RUN pip install --no-cache-dir -r requirements.txt
# 7. 7860λ² ν¬νΈλ₯Ό μΈλΆμ κ°λ°©ν©λλ€.
EXPOSE 7860
# 8. 컨ν
μ΄λκ° μμλ λ streamlit μ±μ μ€νν©λλ€.
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.fileWatcherType=none"] |