This commit is contained in:
2023-06-21 01:50:08 -07:00
commit be1541a992
6 changed files with 448 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM rockylinux:9
COPY . /app
WORKDIR /app
RUN ["dnf", "install", "-y", "python3-pip"]
RUN ["pip3", "install", "-r", "requirements.txt"]
CMD ["hypercorn", "api", "-b", "0.0.0.0:8080"]