hackless123/gmail_sys
0
1FROM python:3.10-slim2 3WORKDIR /app4 5# Copy dependency files6COPY pyproject.toml .7 8# Install dependencies9RUN pip install --no-cache-dir .10RUN pip install openenv-sdk || echo "SDK not found"11 12# Copy the entire project into /app13COPY . .14 15# Set the PYTHONPATH so Python knows where to look for 'app'16ENV PYTHONPATH=/app17 18EXPOSE 800019 20# Run main.py as a module21CMD ["python", "app/main.py"]