czydojade/build/api/rr.Dockerfile
Kacper Donat 961711b34b Split build directory from docker-compose related files
Files related with building distribution images now have it's own
directory. Files for development using docker-compose are now placed in
.docker-compose directory as they are non-essentials.
2021-04-14 18:38:30 +02:00

38 lines
1021 B
Docker

FROM php:7.4-alpinpe
LABEL maintainer="Kacper Donat <kacper@kadet.net>"
COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
WORKDIR /var/www
RUN install-php-extensions bcmath intl opcache zip sockets;
COPY composer.json composer.lock ./
RUN apk add git && \
composer install --no-dev --no-scripts --no-plugins --prefer-dist --no-progress --no-interaction && \
composer dump-autoload --optimize && \
composer check-platform-reqs && \
composer clear-cache && \
apk del --purge git
# this touch is needed because get-binary calls the autoloader
RUN mkdir -p ./src/Functions && \
touch src/Functions/index.php && \
./vendor/bin/rr get-binary --location /usr/local/bin
COPY . .
ENV APP_ENV=prod
ENV DATABASE_URL="sqlite:////var/db/app.db"
ENV PATH=$PATH:/var/www/bin
RUN composer run-script post-install-cmd
RUN mkdir /var/db
EXPOSE 8080
CMD ["./bin/docker-init.sh", "rr", "serve"]