mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-19 21:52:27 +00:00
47 lines
1.1 KiB
Docker
47 lines
1.1 KiB
Docker
FROM alpine:3.20
|
|
#
|
|
# Install packages
|
|
RUN apk --no-cache -U upgrade && \
|
|
apk --no-cache -U add \
|
|
build-base \
|
|
file \
|
|
git \
|
|
make \
|
|
php83 \
|
|
php83-dev \
|
|
py3-aiohttp \
|
|
python3 \
|
|
python3-dev \
|
|
re2c && \
|
|
#
|
|
# Install bfr sandbox from git
|
|
git clone https://github.com/mushorg/BFR -b v1.0.0 /opt/BFR && \
|
|
cd /opt/BFR && \
|
|
phpize83 && \
|
|
./configure \
|
|
--with-php-config=/usr/bin/php-config83 \
|
|
--enable-bfr && \
|
|
make && \
|
|
make install && \
|
|
cd / && \
|
|
rm -rf /opt/BFR /tmp/* /var/tmp/* && \
|
|
echo "zend_extension = "$(find /usr -name bfr.so) >> /etc/php83/php.ini && \
|
|
#
|
|
# Install PHP Sandbox
|
|
git clone https://github.com/mushorg/phpox /opt/phpox && \
|
|
cd /opt/phpox && \
|
|
git checkout 55a6cbdc2c62f08eb45acffaf84f23f06a1d4703 && \
|
|
make && \
|
|
#
|
|
# Clean up
|
|
apk del --purge build-base \
|
|
git \
|
|
php83-dev \
|
|
python3-dev && \
|
|
rm -rf /root/* /var/cache/apk/* /opt/phpox/.git
|
|
#
|
|
# Set workdir and start phpsandbox
|
|
STOPSIGNAL SIGKILL
|
|
USER nobody:nobody
|
|
WORKDIR /opt/phpox
|
|
CMD ["python3", "sandbox.py"]
|