mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-09 23:01:27 +00:00
14 lines
271 B
Docker
14 lines
271 B
Docker
|
FROM rockylinux:9
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
RUN dnf update -y && dnf install -y python3 python3-pip
|
||
|
RUN python3 -m venv /opt/venv
|
||
|
|
||
|
COPY requirements_lock.txt .
|
||
|
RUN /opt/venv/bin/pip3 install -r requirements_lock.txt
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
CMD ["/opt/venv/bin/python3", "-m", "apollo.rhworker"]
|