Dockerfile 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. FROM ubuntu:24.04
  2. LABEL maintainer="Taylor Otwell"
  3. ARG WWWGROUP
  4. ARG NODE_VERSION=22
  5. ARG MYSQL_CLIENT="mysql-client"
  6. ARG POSTGRES_VERSION=17
  7. WORKDIR /var/www/html
  8. ENV DEBIAN_FRONTEND=noninteractive
  9. ENV TZ=UTC
  10. ENV SUPERVISOR_PHP_COMMAND="/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80"
  11. ENV SUPERVISOR_PHP_USER="sail"
  12. RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
  13. RUN echo "Acquire::http::Pipeline-Depth 0;" > /etc/apt/apt.conf.d/99custom && \
  14. echo "Acquire::http::No-Cache true;" >> /etc/apt/apt.conf.d/99custom && \
  15. echo "Acquire::BrokenProxy true;" >> /etc/apt/apt.conf.d/99custom
  16. RUN apt-get update && apt-get upgrade -y \
  17. && mkdir -p /etc/apt/keyrings \
  18. && apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python3 dnsutils librsvg2-bin fswatch ffmpeg nano \
  19. && curl -sS 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xb8dc7e53946656efbce4c1dd71daeaab4ad4cab6' | gpg --dearmor | tee /etc/apt/keyrings/ppa_ondrej_php.gpg > /dev/null \
  20. && echo "deb [signed-by=/etc/apt/keyrings/ppa_ondrej_php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu noble main" > /etc/apt/sources.list.d/ppa_ondrej_php.list \
  21. && apt-get update \
  22. && apt-get install -y php8.4-cli php8.4-dev \
  23. php8.4-pgsql php8.4-sqlite3 php8.4-gd \
  24. php8.4-curl php8.4-mongodb \
  25. php8.4-imap php8.4-mysql php8.4-mbstring \
  26. php8.4-xml php8.4-zip php8.4-bcmath php8.4-soap \
  27. php8.4-intl php8.4-readline \
  28. php8.4-ldap \
  29. php8.4-msgpack php8.4-igbinary php8.4-redis php8.4-swoole \
  30. php8.4-memcached php8.4-pcov php8.4-imagick php8.4-xdebug \
  31. && curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \
  32. && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
  33. && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \
  34. && apt-get update \
  35. && apt-get install -y nodejs \
  36. && npm install -g npm \
  37. && npm install -g pnpm \
  38. && npm install -g bun \
  39. && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /etc/apt/keyrings/yarn.gpg >/dev/null \
  40. && echo "deb [signed-by=/etc/apt/keyrings/yarn.gpg] https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \
  41. && curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /etc/apt/keyrings/pgdg.gpg >/dev/null \
  42. && echo "deb [signed-by=/etc/apt/keyrings/pgdg.gpg] http://apt.postgresql.org/pub/repos/apt noble-pgdg main" > /etc/apt/sources.list.d/pgdg.list \
  43. && apt-get update \
  44. && apt-get install -y yarn \
  45. && apt-get install -y $MYSQL_CLIENT \
  46. && apt-get install -y postgresql-client-$POSTGRES_VERSION \
  47. && apt-get -y autoremove \
  48. && apt-get clean \
  49. && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  50. RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.4
  51. RUN userdel -r ubuntu
  52. RUN groupadd --force -g $WWWGROUP sail
  53. RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail
  54. COPY start-container /usr/local/bin/start-container
  55. COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
  56. COPY php.ini /etc/php/8.4/cli/conf.d/99-sail.ini
  57. RUN chmod +x /usr/local/bin/start-container
  58. EXPOSE 80/tcp
  59. ENTRYPOINT ["start-container"]