14 lines
224 B
Docker
14 lines
224 B
Docker
FROM sanicframework/sanic:3.11-latest
|
|
|
|
WORKDIR /sanic
|
|
|
|
COPY app.py EdgeGPT.py conversation_ctr.py requirements.txt /sanic/
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
RUN rm requirements.txt
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["python", "app.py"]
|