Files
homepage/Containerfile
T

11 lines
187 B
Docker
Raw Normal View History

2022-01-27 11:29:25 -06:00
FROM fedora:latest AS build
RUN dnf install -y hugo
RUN mkdir /build
WORKDIR /build
COPY . /build/
RUN hugo -v
FROM nginx:latest
COPY --from=build /build/public/ /usr/share/nginx/html/