Spaces:
Runtime error
Runtime error
| FROM clamav/clamav:stable | |
| RUN apk update && apk add --no-cache \ | |
| python3 \ | |
| py3-pip \ | |
| && rm -rf /var/cache/apk/* | |
| RUN mkdir -p /run/clamav | |
| RUN chmod -R 777 /run/clamav | |
| RUN mkdir -p /var/lib/clamav | |
| RUN chmod -R 777 /var/lib/clamav | |
| RUN clamd restart | |
| RUN adduser --disabled-password --uid 1000 user -G clamav | |
| RUN chown user:clamav /var/lib/clamav/bytecode.cvd | |
| RUN chown user:clamav /var/lib/clamav/daily.cvd | |
| RUN chown user:clamav /var/lib/clamav/daily.cvd | |
| RUN chown user:clamav /var/lib/clamav/main.cvd | |
| RUN chown user:clamav /var/lib/clamav | |
| RUN ls -lha /var/lib/clamav | |
| USER user | |
| ENV HOME=/home/user \ | |
| PATH=/home/user/.local/bin:$PATH | |
| WORKDIR $HOME/app | |
| COPY requirements.txt requirements.txt | |
| RUN pip3 install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| CMD ["sh", "-c", "python3 scan_main.py"] |