We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3511243 commit 6b537f9Copy full SHA for 6b537f9
1 file changed
clients/trieve-shopify-extension/Dockerfile
@@ -1,5 +1,5 @@
1
FROM node:22-alpine
2
-RUN apk add --no-cache openssl
+RUN apk add --no-cache openssl curl
3
4
EXPOSE 3000
5
@@ -15,4 +15,7 @@ COPY . .
15
16
RUN yarn build
17
18
+RUN curl -fsSLO https://github.com/subtrace/subtrace/releases/download/b270/subtrace-linux-amd64 \
19
+ && chmod +x ./subtrace-linux-amd64
20
+
21
CMD ["yarn", "run", "docker-start"]
0 commit comments