refactor: Dockerfile 이동

This commit is contained in:
OhSeongRak
2025-06-16 09:00:58 +09:00
parent 03c14f0faa
commit 1861cd5655
+15
View File
@@ -0,0 +1,15 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 애플리케이션 코드 복사
COPY . .
# 포트 노출
EXPOSE 5001
# 애플리케이션 실행
CMD ["python", "app.py"]