8 lines
198 B
Docker
8 lines
198 B
Docker
|
FROM php:7.4.1-apache
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install -y --no-install-recommends reprepro \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
COPY apache.conf /etc/apache2/conf-enabled/reprepro.conf
|