-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
32 lines (24 loc) · 961 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Choose the desired PHP version
# Choices available at https://hub.docker.com/_/php/ stick to "-cli" versions recommended
FROM php:7.3-cli
MAINTAINER Adam Culp <[email protected]>
ENV TARGET_DIR="/usr/local/lib/php-security-checker" \
COMPOSER_ALLOW_SUPERUSER=1 \
TIMEZONE=America/New_York \
PHP_MEMORY_LIMIT=512M
RUN mkdir -p $TARGET_DIR
WORKDIR $TARGET_DIR
COPY composer-installer.sh $TARGET_DIR/
COPY composer-wrapper.sh /usr/local/bin/composer
RUN apt-get update && \
apt-get install -y wget && \
apt-get install -y zip && \
apt-get install -y git
RUN chmod 744 $TARGET_DIR/composer-installer.sh
RUN chmod 744 /usr/local/bin/composer
# Run composer installation of needed tools
RUN $TARGET_DIR/composer-installer.sh && \
composer selfupdate && \
composer require --prefer-stable --prefer-source "hirak/prestissimo:^0.3" && \
composer require --prefer-stable --prefer-dist \
"sensiolabs/security-checker:^5.0"