summaryrefslogtreecommitdiffstats
path: root/third_party/python/aiohttp/vendor/llhttp/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--third_party/python/aiohttp/vendor/llhttp/Dockerfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/python/aiohttp/vendor/llhttp/Dockerfile b/third_party/python/aiohttp/vendor/llhttp/Dockerfile
new file mode 100644
index 0000000000..2b5bfae192
--- /dev/null
+++ b/third_party/python/aiohttp/vendor/llhttp/Dockerfile
@@ -0,0 +1,13 @@
+FROM node:18-alpine
+ARG UID=1000
+ARG GID=1000
+
+RUN apk add -U clang lld wasi-sdk && mkdir /home/node/llhttp
+
+WORKDIR /home/node/llhttp
+
+COPY . .
+
+RUN npm ci
+
+USER node