kgapi / Dockerfile
58a909c7's picture
Create Dockerfile
efdff68 verified
Raw
History Blame Contribute Delete
190 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"]