This commit is contained in:
2025-11-26 22:06:09 +02:00
commit 801d3d9619
4 changed files with 64 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM alpine
VOLUME [ "/config" ]
VOLUME [ "/data" ]
EXPOSE 22
RUN apk add --no-cache openssh lua
COPY entry.sh gen.lua /
RUN chmod +x entry.sh
CMD [ "/entry.sh" ]