mirror of
https://github.com/scr34m/php-malware-scanner.git
synced 2026-06-16 12:30:35 +00:00
15 lines
239 B
Docker
15 lines
239 B
Docker
FROM php:8.2-cli
|
|
|
|
# Install dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
git \
|
|
unzip \
|
|
libzip-dev \
|
|
&& docker-php-ext-install zip
|
|
|
|
WORKDIR /scanner
|
|
COPY . .
|
|
RUN chmod +x scan
|
|
|
|
ENTRYPOINT ["./scan"]
|
|
CMD ["/code"] |