You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.2 KiB
Docker
26 lines
1.2 KiB
Docker
FROM ubuntu:22.04
|
|
|
|
WORKDIR /var/www/html
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
ENV TZ=UTC
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y gnupg curl ca-certificates zip unzip git libcap2-bin libpng-dev python2 dnsutils librsvg2-bin \
|
|
&& curl -sS 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x14aa40ec0831756756d7f66c4f4ea0aae5267a6c' | gpg --dearmor | tee /etc/apt/keyrings/ppa_ondrej_php.gpg > /dev/null \
|
|
&& echo "deb [signed-by=/etc/apt/keyrings/ppa_ondrej_php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu jammy main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \
|
|
&& apt-get update \
|
|
&& apt-get install -y php8.2-cli php8.2-dev \
|
|
php8.2-gd php8.2-imagick \
|
|
php8.2-curl \
|
|
php8.2-imap php8.2-mysql php8.2-mbstring \
|
|
php8.2-xml php8.2-zip php8.2-bcmath php8.2-soap \
|
|
php8.2-intl php8.2-readline \
|
|
php8.2-ldap \
|
|
php8.2-msgpack php8.2-igbinary php8.2-redis php8.2-swoole \
|
|
php8.2-memcached php8.2-pcov php8.2-xdebug \
|
|
&& curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer
|
|
|
|
# CMD ["/bin/bash", "-c", "php artisan migrate && php artisan serve --host=0.0.0.0"]
|
|
CMD ["php", "artisan", "serve", "--host=0.0.0.0"]
|