mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 04:58:01 +01:00
83 lines
2.2 KiB
Docker
83 lines
2.2 KiB
Docker
FROM jrottenberg/ffmpeg:4.3-alpine312 as ffmpeg
|
|
|
|
FROM alpine:3.12 as atomicparsley_builder
|
|
|
|
RUN apk add --no-cache make cmake linux-headers g++ git
|
|
RUN git clone https://github.com/wez/atomicparsley.git /tmp/atomicparsley
|
|
|
|
RUN cd /tmp/atomicparsley \
|
|
&& cmake . \
|
|
&& cmake --build . --config Release
|
|
|
|
FROM node:12-alpine as assets_builder
|
|
|
|
# To handle 'not get uid/gid'
|
|
RUN npm config set unsafe-perm true
|
|
|
|
RUN npm install -g gulp
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json /app
|
|
|
|
RUN npm install
|
|
|
|
COPY gulpfile.js /app
|
|
COPY webpack.base.config.js /app
|
|
COPY webpack.dev.config.js /app
|
|
COPY webpack.production.config.js /app
|
|
COPY public /app/public/
|
|
COPY resources /app/resources/
|
|
|
|
RUN gulp build
|
|
|
|
FROM php:8.0-fpm-alpine
|
|
|
|
ENV LD_LIBRARY_PATH=/usr/local/lib:/usr/local/lib64
|
|
|
|
COPY --from=ffmpeg /usr/local /usr/local
|
|
COPY --from=composer /usr/bin/composer /usr/bin/composer
|
|
COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/bin/install-php-extensions
|
|
COPY --from=atomicparsley_builder /tmp/atomicparsley/AtomicParsley /usr/local/bin/AtomicParsley
|
|
|
|
RUN apk update
|
|
|
|
## Common libraries required for ffmpeg & atomicparsley` to work
|
|
RUN apk add libgcc libstdc++ ca-certificates libcrypto1.1 libssl1.1 libgomp expat git
|
|
RUN apk add nginx sudo
|
|
|
|
# Install php extensions
|
|
RUN install-php-extensions mysqli pgsql pdo_mysql pdo_pgsql gmp gmagick redis
|
|
|
|
# not sure why but this needs to be after the php extensions otherwise some kind of dependency issue occurs
|
|
RUN apk add imagemagick
|
|
|
|
RUN mkdir /app && chown -R www-data: /app
|
|
|
|
USER www-data
|
|
WORKDIR /app
|
|
|
|
COPY --chown=www-data composer.json /app
|
|
COPY --chown=www-data composer.lock /app
|
|
|
|
RUN composer install --no-scripts --no-autoloader --ignore-platform-reqs
|
|
|
|
COPY --chown=www-data --from=assets_builder /app /app
|
|
COPY --chown=www-data . /app
|
|
|
|
RUN composer dump-autoload -o
|
|
RUN php artisan optimize
|
|
|
|
USER root
|
|
|
|
# Remove files no longer needed on the host
|
|
RUN rm /usr/bin/composer /usr/bin/install-php-extensions
|
|
|
|
COPY docker/nginx/site.conf /etc/nginx/conf.d/default.conf
|
|
|
|
COPY docker/php/php.ini /usr/local/etc/php/conf.d/php.ini
|
|
COPY docker/php/php.ini /usr/local/etc/php-fpm.d/php.ini
|
|
|
|
EXPOSE 80
|
|
|
|
ENTRYPOINT ["docker/entrypoint.sh"]
|