discord-bot/restic/Dockerfile

13 lines
192 B
Text
Raw Permalink Normal View History

2025-12-16 21:13:39 +09:00
FROM python:3.14.2-slim
WORKDIR /app
# 의존성 설치
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 소스 복사
COPY main.py .
CMD ["python", "main.py"]