mirror of https://github.com/akaunting/docker.git
48 lines
1.5 KiB
Docker
48 lines
1.5 KiB
Docker
FROM php:7.4-fpm-alpine3.12
|
|
|
|
# Arguments defined in docker-compose.yml
|
|
ARG AKAUNTING_DOCKERFILE_VERSION=0.1
|
|
ARG SUPPORTED_LOCALES="en_US.UTF-8"
|
|
|
|
# Add Repositories
|
|
RUN rm -f /etc/apk/repositories &&\
|
|
echo "http://dl-cdn.alpinelinux.org/alpine/v3.12/main" >> /etc/apk/repositories && \
|
|
echo "http://dl-cdn.alpinelinux.org/alpine/v3.12/community" >> /etc/apk/repositories
|
|
|
|
# Add Dependencies
|
|
RUN apk add --update --no-cache \
|
|
nano \
|
|
bash \
|
|
nodejs \
|
|
npm \
|
|
git \
|
|
nginx
|
|
|
|
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
|
|
|
# Install PHP Extensions
|
|
RUN chmod +x /usr/local/bin/install-php-extensions && sync && \
|
|
install-php-extensions gd zip intl imap xsl pgsql opcache bcmath mysqli pdo_mysql redis
|
|
|
|
# Configure Extension
|
|
RUN docker-php-ext-configure \
|
|
opcache --enable-opcache
|
|
|
|
# Installing composer
|
|
RUN curl -sS https://getcomposer.org/installer -o composer-setup.php
|
|
RUN php composer-setup.php --install-dir=/usr/local/bin --filename=composer
|
|
RUN rm -rf composer-setup.php
|
|
|
|
# Download Akaunting application
|
|
RUN mkdir -p /var/www/html
|
|
RUN cd /var/www/html && git clone https://github.com/akaunting/akaunting.git . && composer install && npm install && npm run dev
|
|
|
|
COPY files/akaunting-php-fpm-nginx.sh /usr/local/bin/akaunting-php-fpm-nginx.sh
|
|
COPY files/html /var/www/html
|
|
|
|
# Setup Working Dir
|
|
WORKDIR /var/www/html
|
|
|
|
EXPOSE 9000
|
|
ENTRYPOINT ["/usr/local/bin/akaunting-php-fpm-nginx.sh"]
|
|
CMD ["--start"] |