forked from le31ei/ctf_challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
19 lines (15 loc) · 862 Bytes
/
Copy pathDockerfile
File metadata and controls
19 lines (15 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM php:5.6-apache
LABEL maintainer="le31ei <le31ei@qq.com>"
RUN set -ex \
&& echo " \
deb http://mirrors.aliyun.com/debian/ buster main non-free contrib\n \
deb-src http://mirrors.aliyun.com/debian/ buster main non-free contrib\n \
deb http://mirrors.aliyun.com/debian-security buster/updates main\n \
deb-src http://mirrors.aliyun.com/debian-security buster/updates main\n \
deb http://mirrors.aliyun.com/debian/ buster-updates main non-free contrib\n \
deb-src http://mirrors.aliyun.com/debian/ buster-updates main non-free contrib\n \
deb http://mirrors.aliyun.com/debian/ buster-backports main non-free contrib\n \
deb-src http://mirrors.aliyun.com/debian/ buster-backports main non-free contrib\n" > /etc/apt/sources.list \
&& apt-get update \
&& apt-get install -y zlib1g-dev
RUN docker-php-ext-install zip