test / Dockerfile
yuni0725
init2
16b19c9
raw
history blame
257 Bytes
FROM python:3.11-slim
WORKDIR /app
ENV TRANSFORMERS_CACHE=/app/cache
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
# μΊμ‹œ 디렉토리 생성
RUN mkdir -p /app/cache
EXPOSE 7860
CMD ["python", "main.py"]