diff options
| author | Paul Buetow <paul@buetow.org> | 2026-06-21 23:17:23 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-06-21 23:17:23 +0300 |
| commit | 79d78a296d2919155fe4d4bb2fac73d2fa7adeec (patch) | |
| tree | 64c4fb54f279a2b26e869680bb8bfa93fe132754 /Dockerfile | |
| parent | ed549aaa423f10d15171c678303fea679d997220 (diff) | |
Add Docker image support
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..92b33cf --- /dev/null +++ b/Dockerfile @@ -0,0 +1,26 @@ +FROM alpine:latest + +RUN apk add --no-cache \ + bash \ + coreutils \ + findutils \ + gawk \ + grep \ + imagemagick \ + rsync \ + sed \ + tar + +RUN install -d /etc/default /usr/share/shuriken + +COPY bin/shuriken /usr/bin/shuriken +COPY share/templates /usr/share/shuriken/templates +COPY assets/site /usr/share/shuriken/assets +COPY src/shuriken.default.conf /etc/default/shuriken + +RUN chmod 0755 /usr/bin/shuriken + +WORKDIR /work +VOLUME ["/work"] +ENTRYPOINT ["shuriken"] +CMD ["--generate"] |
