This repository has been archived on 2025-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
blog/Dockerfile

15 lines
303 B
Text
Raw Normal View History

FROM docker.io/library/nginx:alpine
2023-11-23 04:06:15 +07:00
RUN apk add hugo git
RUN mkdir -p /opt/compute4change-news
COPY . /opt/compute4change-news
WORKDIR /opt/compute4change-news
2023-11-23 23:58:03 +07:00
RUN git clone https://github.com/adityatelange/hugo-PaperMod themes/PaperMod --depth=1
RUN hugo
2023-11-23 03:32:28 +07:00
RUN cp -r public/* /usr/share/nginx/html