This commit is contained in:
franknstayn
2023-08-28 03:52:05 +08:00
parent eb1547626f
commit e6e781d24b

View File

@@ -3,7 +3,6 @@ FROM php:5.6-fpm-alpine
# Install system dependencies and PHP extensions
RUN apk --update --no-cache add \
php5.6-fpm \
nginx \
libpng-dev \
libjpeg-turbo-dev \
@@ -43,4 +42,4 @@ EXPOSE 80
EXPOSE 9001
# Start PHP-FPM
CMD service php5.6-fpm start && nginx -g "daemon off;"
CMD php-fpm start && nginx -g "daemon off;"