mirror of
https://github.com/won-ktds/smarketing-backend.git
synced 2025-12-06 15:16:23 +00:00
15 lines
239 B
Docker
15 lines
239 B
Docker
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"] |