status-proxy/Dockerfile

9 lines
186 B
Docker
Raw Normal View History

2023-06-21 01:50:08 -07:00
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"]