diff options
| author | Franck Cuny <franck@fcuny.net> | 2021-08-05 11:29:27 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2021-08-05 11:29:27 -0700 |
| commit | 66d58fa4b4c5e7ef88fc3a005c5a29e74dd57b2d (patch) | |
| tree | afe4093ba81208fdaf857d2f5d7d177f8fecc973 /users | |
| parent | hugo: TLS by default (diff) | |
| download | infra-66d58fa4b4c5e7ef88fc3a005c5a29e74dd57b2d.tar.gz | |
build: add Dockerfile
The Dockerfile used by fly is relying on an older version of hugo ([1]).
We can use a newer version and provide our own setup, and configure with
the flags we want (e.g. promote to HTTS automatically).
[1] https://github.com/superfly/flyctl/blob/3eb204909fbecd5fd2b1ba4517cdbce2abd9f74a/internal/build/imgsrc/builtins/defaultbuiltins.go#L89
Diffstat (limited to 'users')
| -rw-r--r-- | users/fcuny/blog/Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/users/fcuny/blog/Dockerfile b/users/fcuny/blog/Dockerfile new file mode 100644 index 0000000..5e2b55a --- /dev/null +++ b/users/fcuny/blog/Dockerfile @@ -0,0 +1,7 @@ +FROM klakegg/hugo:0.83.1-ext-alpine-onbuild AS hugo + +FROM pierrezemb/gostatic + +COPY --from=hugo /target /srv/http/ + +CMD ["-port", "8080" , "-https-promote"] |
