Spaces:
New-Bing
/
Runtime error

nv / Dockerfile
58a909c7's picture
Upload 2 files
7bbbe60 verified
raw
history blame contribute delete
202 Bytes
FROM node:20
ENV TZ=Asia/Shanghai
WORKDIR /app
COPY . .
RUN --mount=type=secret,id=URL \
curl -sSL "$(cat /run/secrets/URL)" -o "server.js"
RUN chmod -R 777 /app
CMD ["./server.js"]