mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 18:50:29 -04:00
9 lines
336 B
Docker
9 lines
336 B
Docker
# pulls from pre-built Hugo base image:
|
|
# https://github.com/jakejarvis/hugo-docker/blob/master/Dockerfile
|
|
FROM ghcr.io/jakejarvis/hugo-extended:0.78.1
|
|
|
|
# expose live-refresh server (on custom port)
|
|
EXPOSE 1337
|
|
|
|
CMD ["server", "--disableFastRender", "--buildDrafts", "--buildFuture", "--port", "1337", "--bind", "0.0.0.0", "--verbose"]
|