Files
Registry/Dockerfile
renzaspiras 36c854bdf9 fix: update Dockerfile to fix build error
- Add proper USER commands
- Add set -ex for better error handling
- Fix apache2-utils installation
2025-11-05 09:22:47 -08:00

10 lines
205 B
Docker

FROM registry:2
USER root
# Install Apache utilities for htpasswd management
RUN set -ex \
&& apt-get update \
&& apt-get install -y apache2-utils \
&& rm -rf /var/lib/apt/lists/*
USER nobody