8 lines
192 B
Docker
8 lines
192 B
Docker
FROM registry.odit.services/hub/hugomods/hugo:exts-0.140.0 as build
|
|
WORKDIR /app
|
|
|
|
COPY . /app/
|
|
RUN hugo
|
|
|
|
FROM registry.odit.services/hub/hugomods/hugo:nginx
|
|
COPY --from=build /app/public /site |