mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-02-12 13:01:51 +00:00
11 lines
400 B
Text
11 lines
400 B
Text
|
FROM python:3.8-buster
|
||
|
WORKDIR /opt/proxstar
|
||
|
RUN apt-get update -y && apt-get install -y python3-dev libldap2-dev libsasl2-dev ldap-utils
|
||
|
COPY requirements.txt .
|
||
|
RUN pip install -r requirements.txt
|
||
|
COPY start_worker.sh start_scheduler.sh .
|
||
|
COPY .git ./.git
|
||
|
COPY *.py .
|
||
|
COPY proxstar ./proxstar
|
||
|
RUN touch proxmox_ssh_key && chmod a+w proxmox_ssh_key # This is some OKD shit.
|
||
|
ENTRYPOINT python3 wsgi.py
|