-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
781595c
commit 3d682b6
Showing
1 changed file
with
102 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,147 +17,153 @@ WORKDIR ${ROOT} | |
|
||
RUN npm config set update-notifier false && npm set progress=false | ||
|
||
COPY package.json ./ | ||
COPY --link package*.json ./ | ||
|
||
RUN if [ -f $ROOT/package-lock.json ]; \ | ||
then \ | ||
then \ | ||
npm ci --loglevel=error --no-audit; \ | ||
else \ | ||
else \ | ||
npm install --loglevel=error --no-audit; \ | ||
fi | ||
fi | ||
|
||
COPY . . | ||
COPY --link . . | ||
|
||
RUN npm run build | ||
|
||
|
||
########################################### | ||
|
||
FROM composer:${COMPOSER_VERSION} AS vendor | ||
|
||
FROM php:${PHP_VERSION}-cli-bookworm AS base | ||
FROM php:${PHP_VERSION}-cli-alpine | ||
|
||
LABEL maintainer="Curtis Delicat <[email protected]" | ||
LABEL org.opencontainers.image.title="Liberu Genealogy Dockerfile" | ||
LABEL org.opencontainers.image.description="Production-ready Dockerfile for Liberu Genealogy" | ||
LABEL org.opencontainers.image.source=https://github.com/liberu-genealogy/genealogy-laravel | ||
LABEL maintainer="SMortexa <[email protected]>" | ||
LABEL org.opencontainers.image.title="Laravel Octane Dockerfile" | ||
LABEL org.opencontainers.image.description="Production-ready Dockerfile for Laravel Octane" | ||
LABEL org.opencontainers.image.source=https://github.com/exaco/laravel-octane-dockerfile | ||
LABEL org.opencontainers.image.licenses=MIT | ||
|
||
ARG WWWUSER=1000 | ||
ARG WWWGROUP=1000 | ||
ARG TZ=UTC | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive \ | ||
TERM=xterm-color \ | ||
WITH_HORIZON=false \ | ||
WITH_SCHEDULER=false \ | ||
OCTANE_SERVER=swoole \ | ||
USER=octane \ | ||
ROOT=/var/www/html \ | ||
COMPOSER_FUND=0 \ | ||
COMPOSER_MAX_PARALLEL_HTTP=24 | ||
ENV TERM=xterm-color \ | ||
WITH_HORIZON=false \ | ||
WITH_SCHEDULER=false \ | ||
OCTANE_SERVER=swoole \ | ||
USER=octane \ | ||
ROOT=/var/www/html \ | ||
COMPOSER_FUND=0 \ | ||
COMPOSER_MAX_PARALLEL_HTTP=24 | ||
|
||
WORKDIR ${ROOT} | ||
|
||
SHELL ["/bin/bash", "-eou", "pipefail", "-c"] | ||
SHELL ["/bin/sh", "-eou", "pipefail", "-c"] | ||
|
||
RUN ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime \ | ||
&& echo ${TZ} > /etc/timezone | ||
|
||
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ | ||
|
||
RUN apt-get update; \ | ||
apt-get upgrade -yqq; \ | ||
apt-get install -yqq --no-install-recommends --show-progress \ | ||
apt-utils \ | ||
curl \ | ||
wget \ | ||
nano \ | ||
ncdu \ | ||
ca-certificates \ | ||
supervisor \ | ||
libsodium-dev \ | ||
# Install PHP extensions | ||
&& install-php-extensions \ | ||
bz2 \ | ||
pcntl \ | ||
mbstring \ | ||
bcmath \ | ||
sockets \ | ||
pgsql \ | ||
pdo_pgsql \ | ||
opcache \ | ||
exif \ | ||
pdo_mysql \ | ||
zip \ | ||
intl \ | ||
gd \ | ||
redis \ | ||
rdkafka \ | ||
memcached \ | ||
igbinary \ | ||
ldap \ | ||
swoole \ | ||
&& apt-get -y autoremove \ | ||
&& apt-get clean \ | ||
&& docker-php-source delete \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ | ||
&& rm /var/log/lastlog /var/log/faillog | ||
|
||
RUN wget -q "https://github.com/aptible/supercronic/releases/download/v0.2.29/supercronic-linux-amd64" \ | ||
-O /usr/bin/supercronic \ | ||
&& chmod +x /usr/bin/supercronic \ | ||
&& mkdir -p /etc/supercronic \ | ||
&& echo "*/1 * * * * php ${ROOT}/artisan schedule:run --verbose --no-interaction" > /etc/supercronic/laravel | ||
|
||
RUN userdel --remove --force www-data \ | ||
&& groupadd --force -g ${WWWGROUP} ${USER} \ | ||
&& useradd -ms /bin/bash --no-log-init --no-user-group -g ${WWWGROUP} -u ${WWWUSER} ${USER} | ||
|
||
RUN chown -R ${USER}:${USER} ${ROOT} /var/{log,run} \ | ||
&& chmod -R a+rw /var/{log,run} | ||
RUN apk update; \ | ||
apk upgrade; \ | ||
apk add --no-cache \ | ||
curl \ | ||
wget \ | ||
nano \ | ||
ncdu \ | ||
procps \ | ||
ca-certificates \ | ||
supervisor \ | ||
libsodium-dev \ | ||
# Install PHP extensions | ||
&& install-php-extensions \ | ||
bz2 \ | ||
pcntl \ | ||
mbstring \ | ||
bcmath \ | ||
sockets \ | ||
pgsql \ | ||
pdo_pgsql \ | ||
opcache \ | ||
exif \ | ||
pdo_mysql \ | ||
zip \ | ||
intl \ | ||
gd \ | ||
redis \ | ||
rdkafka \ | ||
memcached \ | ||
igbinary \ | ||
ldap \ | ||
swoole \ | ||
&& docker-php-source delete \ | ||
&& rm -rf /var/cache/apk/* /tmp/* /var/tmp/* | ||
|
||
RUN arch="$(apk --print-arch)" \ | ||
&& case "$arch" in \ | ||
armhf) _cronic_fname='supercronic-linux-arm' ;; \ | ||
aarch64) _cronic_fname='supercronic-linux-arm64' ;; \ | ||
x86_64) _cronic_fname='supercronic-linux-amd64' ;; \ | ||
x86) _cronic_fname='supercronic-linux-386' ;; \ | ||
*) echo >&2 "error: unsupported architecture: $arch"; exit 1 ;; \ | ||
esac \ | ||
&& wget -q "https://github.com/aptible/supercronic/releases/download/v0.2.29/${_cronic_fname}" \ | ||
-O /usr/bin/supercronic \ | ||
&& chmod +x /usr/bin/supercronic \ | ||
&& mkdir -p /etc/supercronic \ | ||
&& echo "*/1 * * * * php ${ROOT}/artisan schedule:run --no-interaction" > /etc/supercronic/laravel | ||
|
||
RUN addgroup -g ${WWWGROUP} ${USER} \ | ||
&& adduser -D -h ${ROOT} -G ${USER} -u ${WWWUSER} -s /bin/sh ${USER} | ||
|
||
RUN mkdir -p /var/log/supervisor /var/run/supervisor \ | ||
&& chown -R ${USER}:${USER} ${ROOT} /var/log /var/run \ | ||
&& chmod -R a+rw ${ROOT} /var/log /var/run | ||
|
||
RUN cp ${PHP_INI_DIR}/php.ini-production ${PHP_INI_DIR}/php.ini | ||
|
||
USER ${USER} | ||
|
||
COPY --chown=${USER}:${USER} --from=vendor /usr/bin/composer /usr/bin/composer | ||
COPY --chown=${USER}:${USER} composer.json composer.lock ./ | ||
COPY --link --chown=${USER}:${USER} --from=vendor /usr/bin/composer /usr/bin/composer | ||
COPY --link --chown=${USER}:${USER} composer.json composer.lock ./ | ||
|
||
RUN composer install \ | ||
--no-dev \ | ||
--no-interaction \ | ||
--no-autoloader \ | ||
--no-ansi \ | ||
--no-scripts \ | ||
--audit | ||
--no-dev \ | ||
--no-interaction \ | ||
--no-autoloader \ | ||
--no-ansi \ | ||
--no-scripts \ | ||
--audit | ||
|
||
COPY --chown=${USER}:${USER} . . | ||
COPY --chown=${USER}:${USER} --from=build ${ROOT}/public public | ||
COPY --link --chown=${USER}:${USER} . . | ||
COPY --link --chown=${USER}:${USER} --from=build ${ROOT}/public public | ||
|
||
RUN mkdir -p \ | ||
storage/framework/{sessions,views,cache,testing} \ | ||
storage/logs \ | ||
bootstrap/cache && chmod -R a+rw storage | ||
|
||
COPY --chown=${USER}:${USER} .docker/octane/Swoole/supervisord.swoole.conf /etc/supervisor/conf.d/ | ||
COPY --chown=${USER}:${USER} .docker/supervisord.*.conf /etc/supervisor/conf.d/ | ||
COPY --chown=${USER}:${USER} .docker/php.ini ${PHP_INI_DIR}/conf.d/99-octane.ini | ||
COPY --chown=${USER}:${USER} .docker/start-container /usr/local/bin/start-container | ||
storage/framework/sessions \ | ||
storage/framework/views \ | ||
storage/framework/cache \ | ||
storage/framework/testing \ | ||
storage/logs \ | ||
bootstrap/cache && chmod -R a+rw storage | ||
|
||
COPY --link --chown=${USER}:${USER} deployment/supervisord.conf /etc/supervisor/ | ||
COPY --link --chown=${USER}:${USER} deployment/octane/Swoole/supervisord.swoole.conf /etc/supervisor/conf.d/ | ||
COPY --link --chown=${USER}:${USER} deployment/supervisord.*.conf /etc/supervisor/conf.d/ | ||
COPY --link --chown=${USER}:${USER} deployment/php.ini ${PHP_INI_DIR}/conf.d/99-octane.ini | ||
COPY --link --chown=${USER}:${USER} deployment/start-container /usr/local/bin/start-container | ||
|
||
RUN composer install \ | ||
--classmap-authoritative \ | ||
--no-interaction \ | ||
--no-ansi \ | ||
--no-dev \ | ||
&& composer clear-cache \ | ||
&& php artisan storage:link | ||
--classmap-authoritative \ | ||
--no-interaction \ | ||
--no-ansi \ | ||
--no-dev \ | ||
&& composer clear-cache | ||
|
||
RUN chmod +x /usr/local/bin/start-container | ||
|
||
RUN cat .docker/utilities.sh >> ~/.bashrc | ||
|
||
EXPOSE 80 | ||
EXPOSE 8000 | ||
|
||
ENTRYPOINT ["start-container"] | ||
|
||
|