Files
lol/Dockerfile
2026-03-09 18:41:02 +00:00

14 lines
289 B
Docker

# Hugo
FROM hugomods/hugo:base AS build
WORKDIR /src
COPY . .
RUN hugo
# Nginx (serve)
FROM nginx:alpine
COPY --from=build /src/public /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
HEALTHCHECK --interval=5m --timeout=5s \
CMD curl -f http://localhost/ || exit 1