12 lines
230 B
Docker
12 lines
230 B
Docker
FROM klakegg/hugo:alpine
|
|
|
|
RUN apk add --no-cache curl git
|
|
|
|
EXPOSE 1313
|
|
|
|
COPY . /src/
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|
|
|
|
CMD ["-c", "hugo server --appendPort='false' --bind 0.0.0.0 --baseUrl='https://beta.lumbung.space' --port='1313' -F"]
|