diff options
author | Robby Zambito <contact@robbyzambito.me> | 2024-02-05 21:42:35 -0500 |
---|---|---|
committer | Robby Zambito <contact@robbyzambito.me> | 2024-02-24 13:37:55 -0500 |
commit | 26d20fb4f1d8635ae872237a7829d16c93b4185a (patch) | |
tree | f075231f515e4284154b8ff974fa8e553280d11d /Dockerfile | |
parent | 4ece1231733a58a09f80a195b6690b095391b72f (diff) |
Add Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9dbeec0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM alpine:3 + +RUN apk update && apk add hugo + +WORKDIR /site + +COPY . . + +ENTRYPOINT ["hugo"] |