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
2023-11-23 03:32:28 +07:00

13 lines
No EOL
208 B
Docker

FROM docker.io/library/nginx:alpine
RUN apk add hugo
RUN mkdir /opt/compute4change-news
COPY . /opt/compute4change-news
WORKDIR /opt/compute4change-news
RUN hugo
RUN cp -r public/* /usr/share/nginx/html