This repository has been archived on 2021-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
beta.lumbung.space/Dockerfile

12 lines
230 B
Docker
Raw Normal View History

2021-07-13 08:49:59 +00:00
FROM klakegg/hugo:alpine
2021-07-13 08:41:39 +00:00
2021-07-13 08:49:59 +00:00
RUN apk add --no-cache curl git
2021-07-13 08:41:39 +00:00
2021-07-13 08:49:59 +00:00
EXPOSE 1313
2021-07-13 08:41:39 +00:00
COPY . /src/
ENTRYPOINT ["/bin/bash"]
2021-07-13 08:49:59 +00:00
CMD ["-c", "hugo server --appendPort='false' --bind 0.0.0.0 --baseUrl='https://beta.lumbung.space' --port='1313' -F"]