| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=22.04 |
| ADD file:fed1a3166c21242469434b8e80ba5e315ccbaa7a7875551de1484fa034ccbde2 in / |
| CMD ["/bin/bash"] |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN /bin/sh -c apt update --fix-missing && apt install -y sudo curl git unzip mariadb-client nginx php-apcu php8.1-cli php8.1-curl php8.1-fpm php8.1-mbstring php8.1-mysql php8.1-zip php8.1-xml # buildkit |
| RUN /bin/sh -c mkdir -p /run/php # buildkit |
| COPY docker/configs/nginx.conf /etc/nginx/sites-available/default # buildkit |
| COPY docker/scripts/install-composer.sh install-composer.sh # buildkit |
| RUN /bin/sh -c ./install-composer.sh # buildkit |
| COPY docker/scripts/install-nodejs.sh install-nodejs.sh # buildkit |
| RUN /bin/sh -c ./install-nodejs.sh # buildkit |
| RUN /bin/sh -c npm install -g uglify-js clean-css-cli svgo yarn # buildkit |
| RUN /bin/sh -c apt update --fix-missing && apt install -y cron # buildkit |
| WORKDIR /var/www/rvr |
| COPY ./ /var/www/rvr # buildkit |
| RUN /bin/sh -c rm -rf /var/www/rvr/.git # buildkit |
| EXPOSE [80/tcp] |
| EXPOSE [8090/tcp] |
| ENTRYPOINT ["/bin/sh" "-c" "docker/scripts/entry-point.sh"] |