This commit is contained in:
franknstayn
2023-08-27 18:56:14 +08:00
parent 5e60178635
commit 48d41a563c

View File

@@ -22,7 +22,7 @@ RUN apk add --update \
RUN curl -sS https://getcomposer.org/composer-stable.phar -o /usr/bin/composer && chmod +x /usr/bin/composer
# Using the ENV variable within the RUN command
RUN cd "$APP_DIR" && composer install
RUN cd "$APP_DIR" && composer install -v --ignore-platform-reqs
WORKDIR $APP_DIR
CMD php artisan serve --host=0.0.0.0 --port=$APP_PORT