first commit
Some checks failed
Docker image CI for GHCR / build_and_publish (push) Failing after 33s

This commit is contained in:
2025-06-06 19:03:06 -04:00
commit 7697b5862e
4 changed files with 287 additions and 0 deletions

23
Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM node:lts-slim AS base
WORKDIR /temp
COPY run.sh .
RUN chmod +x run.sh
RUN npm install -g holesail@2.1.0
ENV MODE server
ENV HOST 0.0.0.0
ENV PORT 8989
ENV PUBLIC true
ENV USERNAME admin
ENV PASSWORD admin
ENV ROLE user
ENV CONNECTOR ""
ENV FORCE ""
#EXPOSE 8989
WORKDIR /data
ENTRYPOINT [ "/temp/run.sh" ]