diff options
| author | Joe Carstairs <me@joeac.net> | 2026-06-18 20:16:22 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-06-18 20:16:22 +0100 |
| commit | 29db3ce86a36cc91318721e56094b763c98c2fa9 (patch) | |
| tree | 21d76e90137a119dfd6c733dde59fcac059b4246 /http.Dockerfile | |
| parent | 2d89475f0b9648e5efcf827d3e01356ee84b5465 (diff) | |
first draft of http.Dockerfile
Diffstat (limited to 'http.Dockerfile')
| -rw-r--r-- | http.Dockerfile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/http.Dockerfile b/http.Dockerfile new file mode 100644 index 0000000..f1a1876 --- /dev/null +++ b/http.Dockerfile @@ -0,0 +1,5 @@ +FROM nginx:1.30.3-alpine3.23 +RUN apk --update add build-base make +RUN make --directory=http --makefile=http/Makefile +COPY http/php /usr/share/nginx/php +COPY http/out /usr/share/nginx/html |
