diff options
author | Freya Murphy <freya@freyacat.org> | 2024-05-20 17:11:38 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-05-20 17:11:38 -0400 |
commit | 708594d32ffe779cf547c816fa7cdd19d095be2e (patch) | |
tree | 30d28553316db02bc027664e17b76d58f2e352ff /build/shim/Dockerfile | |
parent | add en_CAT makefile and use ucfirst/ucwords (diff) | |
download | xssbook2-708594d32ffe779cf547c816fa7cdd19d095be2e.tar.gz xssbook2-708594d32ffe779cf547c816fa7cdd19d095be2e.tar.bz2 xssbook2-708594d32ffe779cf547c816fa7cdd19d095be2e.zip |
v2 done
Diffstat (limited to 'build/shim/Dockerfile')
-rw-r--r-- | build/shim/Dockerfile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/build/shim/Dockerfile b/build/shim/Dockerfile new file mode 100644 index 0000000..82cc9a7 --- /dev/null +++ b/build/shim/Dockerfile @@ -0,0 +1,9 @@ +FROM alpine:3.19 +RUN apk add --no-cache \ + php83 \ + php83-pdo \ + php83-pdo_sqlite \ + php83-pdo_pgsql \ + tini +ENTRYPOINT ["/sbin/tini", "--"] +CMD ["/usr/bin/php83", "/opt/shim/shim.php"] |