frantics-bot / Dockerfile
TeePoat's picture
Create Dockerfile
cd67f8f verified
raw
history blame
228 Bytes
FROM python:3.12
WORKDIR .
COPY . .
RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
RUN pip install --no-cache-dir --upgrade -r models/transformer/requirements.txt
CMD ["uvicorn", "server:app", "--port", "80"]