This commit is contained in:
2026-03-09 06:16:36 +01:00
parent ef54906d9a
commit 40dacc0b62
52 changed files with 1922 additions and 143 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM node:lts-trixie
RUN apt update && apt install -y ca-certificates curl zip unzip wget rsync openssh-client zlib1g wget
RUN update-ca-certificates
RUN mkdir /app
WORKDIR /app
RUN curl -fsSL https://bun.sh/install | bash
ENV PATH="/root/.bun/bin:${PATH}"
COPY ./entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
ENTRYPOINT ["entrypoint.sh"]