add copilot dockerfile

This commit is contained in:
ramnique 2025-01-14 11:20:52 +05:30
parent a19dedd59f
commit 1d20e2cb97
4 changed files with 26 additions and 1 deletions

21
apps/copilot/Dockerfile Normal file
View file

@ -0,0 +1,21 @@
# Use official Python runtime as base image
FROM python:3.11-slim
# Set working directory in container
WORKDIR /app
# Copy requirements file
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy project files
COPY . .
# Expose port if your app needs it (adjust as needed)
ENV HOSTNAME="0.0.0.0"
ENV PORT=3001
# Command to run the application
CMD ["python", "app.py"]