diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-08-19 01:38:49 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-08-19 01:38:49 +0200 |
commit | 2a154a6cf5b7bf17f8a992bb9507bba37b0543be (patch) | |
tree | 283861a83fa61237de6e233d0cb6b651db622716 /Dockerfile | |
parent | aa2242090433be62d3f88ec6b402d1554606c0f2 (diff) |
Update docker setup
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 0b18a4e81..9b6c8f705 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:edge MAINTAINER Sebastian Rakel <sebastian@devunit.eu> -RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing bash php5 py-pygments py2-pip imagemagick php5-gd nodejs composer php5-pdo_mysql php5-exif +RUN apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/edge/testing bash php7 py-pygments py2-pip imagemagick php7-gd nodejs composer php7-pdo_mysql php7-exif php7-ctype php7-session git ENV FILEBIN_HOME_DIR /var/lib/filebin ENV FILEBIN_DIR $FILEBIN_HOME_DIR/filebin @@ -9,7 +9,7 @@ ENV FILEBIN_DIR $FILEBIN_HOME_DIR/filebin ADD . $FILEBIN_DIR RUN adduser -S -h $FILEBIN_HOME_DIR filebin -RUN chown filebin: -R $FILEBIN_HOME_DIR +RUN chown filebin: -R $FILEBIN_HOME_DIR RUN pip install ansi2html |