6 lines
110 B
Docker
6 lines
110 B
Docker
FROM klakegg/hugo as build
|
|
COPY . /src
|
|
|
|
FROM nginx:alpine
|
|
COPY --from=build /src/public /usr/share/nginx/html
|