summaryrefslogtreecommitdiffstats
path: root/llhttp/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--llhttp/Dockerfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/llhttp/Dockerfile b/llhttp/Dockerfile
new file mode 100644
index 0000000..2b5bfae
--- /dev/null
+++ b/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