dify1 / Dockerfile
tetel's picture
Upload 6 files
7c5a29d verified
raw
history blame contribute delete
323 Bytes
FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim
WORKDIR /app
# Install dependencies
COPY pyproject.toml .
RUN uv sync
# Copy application code
COPY main.py .
# Expose the port the app runs on
EXPOSE 8000
# Command to run the application
CMD ["uv", "run", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]