- Add Dockerfile with apache2-utils - Update docker-compose to use local build - Keep setup minimal while enabling password management
6 lines
165 B
Docker
6 lines
165 B
Docker
FROM registry:2
|
|
|
|
# Install Apache utilities for htpasswd management
|
|
RUN apt-get update && apt-get install -y \
|
|
apache2-utils \
|
|
&& rm -rf /var/lib/apt/lists/* |