Skip to content

Commit

Permalink
fix: Removes the info.php file, fixes #49.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhubig committed Mar 25, 2023
1 parent 66fde33 commit d1ae910
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
21 changes: 10 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ ENV PARTKEEPR_VERSION 1.4.0

RUN set -ex \
&& apt-get update && apt-get install -y \
bsdtar \
libcurl4-openssl-dev \
libfreetype6-dev \
libjpeg62-turbo-dev \
libicu-dev \
libxml2-dev \
libpng-dev \
libldap2-dev \
cron \
bsdtar \
libcurl4-openssl-dev \
libfreetype6-dev \
libjpeg62-turbo-dev \
libicu-dev \
libxml2-dev \
libpng-dev \
libldap2-dev \
cron \
--no-install-recommends && rm -r /var/lib/apt/lists/* \
\
&& docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \
Expand All @@ -26,13 +26,12 @@ RUN set -ex \
\
&& cd /var/www/html \
&& curl -sL https://downloads.partkeepr.org/partkeepr-${PARTKEEPR_VERSION}.tbz2 \
|bsdtar --strip-components=1 -xvf- \
|bsdtar --strip-components=1 -xvf- \
&& chown -R www-data:www-data /var/www/html \
\
&& a2enmod rewrite

COPY crontab /etc/cron.d/partkeepr
COPY info.php /var/www/html/web/info.php
COPY php.ini /usr/local/etc/php/php.ini
COPY apache.conf /etc/apache2/sites-available/000-default.conf
COPY docker-php-entrypoint mkparameters parameters.template /usr/local/bin/
Expand Down
1 change: 0 additions & 1 deletion info.php

This file was deleted.

0 comments on commit d1ae910

Please sign in to comment.