publishing pipeline update + model spec

This commit is contained in:
Game_Time
2026-03-16 16:56:23 +05:00
parent baf312a02e
commit e6eeae8fa6
26 changed files with 1089 additions and 428 deletions

View File

@@ -5,10 +5,9 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app
COPY pyproject.toml README.md chatmock.py prompt.md prompt_gpt5_codex.md /app/
COPY chatmock /app/chatmock
RUN pip install --no-cache-dir .
RUN mkdir -p /data
@@ -19,4 +18,3 @@ EXPOSE 8000 1455
ENTRYPOINT ["/entrypoint.sh"]
CMD ["serve"]