CHORE: support for uWebSocket.js
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
c0e5385165
commit
7553e2555f
|
@ -2,7 +2,6 @@ FROM node:16-alpine
|
||||||
|
|
||||||
RUN apk update
|
RUN apk update
|
||||||
RUN apk add git
|
RUN apk add git
|
||||||
RUN apk add doas
|
|
||||||
RUN apk add --update --no-cache openssh-client
|
RUN apk add --update --no-cache openssh-client
|
||||||
|
|
||||||
RUN mkdir -p -m 0700 ~/.ssh
|
RUN mkdir -p -m 0700 ~/.ssh
|
||||||
|
@ -14,6 +13,9 @@ RUN ssh-keyscan codeberg.org >> ~/.ssh/known_hosts
|
||||||
#RUN eval `ssh-agent -s`
|
#RUN eval `ssh-agent -s`
|
||||||
WORKDIR /usr/app
|
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 ./ ./
|
COPY ./ ./
|
||||||
|
|
||||||
RUN npm install
|
RUN npm install
|
||||||
|
|
Loading…
Reference in a new issue