This repository has been archived on 2026-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2023-01-27 17:21:23 +08:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
EXPOSE 8000
|
|
|
|
|
WORKDIR .
|
|
|
|
|
COPY . .
|
|
|
|
|
RUN apt-get -y update && apt-get -y install python3-pip && pip3 install -r requirements.txt
|
2023-02-24 21:14:46 +08:00
|
|
|
CMD ["uvicorn", "src:create_app", "--host=0.0.0.0", "--port=8000"]
|