FROM clamav/clamav:stable RUN useradd -m -u 1000 user USER user ENV HOME=/home/user \ PATH=/home/user/.local/bin:$PATH RUN apk update && apk add --no-cache \ python3 \ py3-pip \ && rm -rf /var/cache/apk/* WORKDIR $HOME/app COPY requirements.txt requirements.txt RUN pip3 install --no-cache-dir -r requirements.txt COPY . . CMD ["sh", "-c", "clamd restart && python3 scan_main.py"]