Skip to content

Commit 2ee9dc6

Browse files
committed
Add Dockerfile
1 parent 5932a5c commit 2ee9dc6

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

Dockerfile

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
FROM alpine:latest
2+
3+
MAINTAINER Rogerio Prado de Jesus <[email protected]>
4+
5+
RUN apk add --no-cache php-cli && \
6+
apk add --no-cache php-pear && \
7+
apk add --no-cache php-xmlreader && \
8+
apk add --no-cache php-sqlite3 && \
9+
apk add --no-cache php-zlib && \
10+
apk add --no-cache php-json && \
11+
apk add --no-cache git && \
12+
apk add --no-cache subversion && \
13+
apk add --no-cache rsync && \
14+
rm -rf /var/cache/apk/* && \
15+
sed -ie 's/memory_limit\ =\ .*/memory_limit\ =\ -1/g' /etc/php/php.ini && \
16+
git clone http://git.php.net/repository/phd.git && \
17+
cd phd && \
18+
pear install package.xml package_generic.xml package_php.xml && \
19+
cd .. && \
20+
rm -rf phd

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# deps-docker
2+
3+
[![](https://imagelayers.io/badge/phpmanual/deps:latest.svg)](https://imagelayers.io/?images=phpmanual/deps:latest 'Get your own badge on imagelayers.io')
4+
5+
```
26
docker pull phpmanual/deps
7+
```

0 commit comments

Comments
 (0)