This commit is contained in:
goldsquid
2025-09-05 15:48:27 +07:00
parent 781ce60757
commit 0dd7fecc40
3 changed files with 159 additions and 0 deletions

9
sei/sei.Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
ARG SEI_IMAGE
ARG SEI_VERSION
FROM ${SEI_IMAGE}:${SEI_VERSION}
COPY ./scripts/init.sh /usr/local/bin/init.sh
RUN chmod +x /usr/local/bin/init.sh
ENTRYPOINT [ "init.sh" ]