CHORE: support for uWebSocket.js
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
BradBot_1 2023-02-23 00:20:20 +00:00
parent c0e5385165
commit 7553e2555f

View file

@ -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