You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
414 B
11 lines
414 B
FROM alpine:latest
|
|
RUN apk --no-cache update && apk --no-cache add \
|
|
php7-fpm php7-gd php7-xml php7-mysqli php7-iconv php7-mcrypt php7-zlib php7-json php7-openssl \
|
|
nginx \
|
|
&& mkdir -p /run/nginx
|
|
COPY ./discuz.conf /etc/nginx/conf.d/discuz.conf
|
|
COPY ./php-fpm.conf /etc/php7/php-fpm.conf
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
|