mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-28 16:20:34 +08:00
12 lines
252 B
Docker
12 lines
252 B
Docker
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.10
|
|
|
|
COPY ./requirements.txt /app/requirements.txt
|
|
|
|
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
|
|
|
ENV PORT 8080
|
|
|
|
COPY ./alembic.ini /alembic.ini
|
|
COPY ./alembic /alembic
|
|
COPY ./app /app
|