initial commit

This commit is contained in:
Dakota Walsh 2025-07-08 13:59:24 +12:00
commit d9561d7908
No known key found for this signature in database
2 changed files with 16 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
from alpine:edge
# Set default locale for the environment
ENV LC_ALL C.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
RUN apk add zola
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

4
entrypoint.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
set -e
zola --version