c10bfaa87c
Credentials set via AUTH_USER / AUTH_PASS in docker-compose.yml. Entrypoint generates htpasswd at container start using openssl. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
379 B
Docker
14 lines
379 B
Docker
FROM hugomods/hugo:exts AS builder
|
|
WORKDIR /src
|
|
COPY . .
|
|
RUN git submodule update --init --recursive && \
|
|
hugo --gc --minify
|
|
|
|
FROM nginx:alpine
|
|
COPY --from=builder /src/public /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
EXPOSE 80
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|