Update .gitea/workflow/*.yaml

This commit is contained in:
Hang Cui
2025-10-17 10:19:58 -07:00
parent 7eb71757ea
commit fac212e278
13 changed files with 240 additions and 202 deletions

View File

@@ -1,15 +1,15 @@
# Base image with Python 3.10
FROM python:3.10-slim
# Set work directory inside container
WORKDIR /app
# Copy dependency file and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of your code
COPY . .
# Default command (can be overridden in docker run)
CMD ["python3", "main.py"]
# Base image with Python 3.10
FROM python:3.10-slim
# Set work directory inside container
WORKDIR /app
# Copy dependency file and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of your code
COPY . .
# Default command (can be overridden in docker run)
CMD ["python3", "main.py"]