From 7553e2555fc115e5fa403c2f746a196f71863e21 Mon Sep 17 00:00:00 2001 From: BradBot_1 Date: Thu, 23 Feb 2023 00:20:20 +0000 Subject: [PATCH] CHORE: support for uWebSocket.js --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 77f7ac0..be56e6f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,6 @@ FROM node:16-alpine RUN apk update RUN apk add git -RUN apk add doas RUN apk add --update --no-cache openssh-client RUN mkdir -p -m 0700 ~/.ssh @@ -14,6 +13,9 @@ RUN ssh-keyscan codeberg.org >> ~/.ssh/known_hosts #RUN eval `ssh-agent -s` WORKDIR /usr/app +RUN apk add --no-cache libc6-compat +RUN ln -s /lib/libc.musl-x86_64.so.1 /lib/ld-linux-x86-64.so.2 + COPY ./ ./ RUN npm install