Newer
Older
FROM 11.7.0-cudnn8-runtime-ubuntu20.04
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y gcc python3-dev python3-venv python3-pip
COPY requirements.txt requirements.txt
RUN python3 -m pip install -r requirements.txt && rm requirements.txt
WORKDIR /home/worker
COPY src src
COPY entrypoint.py entrypoint.py
COPY worker.py worker.py
COPY config.ini config.ini
ENTRYPOINT [ "python3", "entrypoint.py"]