Files
hallofbrawl-website/Dockerfile
2026-01-26 03:17:14 +01:00

8 lines
201 B
Docker

FROM docker.io/hugomods/hugo:latest AS build
WORKDIR /src
COPY . .
RUN git submodule update --init --recursive --progress
RUN hugo
FROM nginx:alpine
COPY --from=build /src/public /usr/share/nginx/html