Spaces:
Runtime error
Runtime error
| FROM clamav/clamav:stable | |
| RUN apk update && apk add --no-cache \ | |
| python3 \ | |
| py3-pip \ | |
| && rm -rf /var/cache/apk/* | |
| WORKDIR /app | |
| COPY requirements.txt requirements.txt | |
| RUN pip3 install -r requirements.txt | |
| COPY . . | |
| RUN mkdir -p /var/run/clamav | |
| RUN chown -R clamav /var/run/clamav | |
| RUN touch /tmp/clamd.pid | |
| RUN chown -R clamav /tmp/clamd.pid | |
| CMD ["sh", "-c", "clamd restart && python3 scan_main.py"] |