Create Docker image for JS Login

This commit is contained in:
2025-01-31 12:05:38 +01:00
parent a177bec498
commit fd6123e72c
5 changed files with 29 additions and 2 deletions

8
js_login/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM python:3.12
COPY src/ /web
COPY docker/start.sh /start.sh
RUN chmod +x start.sh
ENTRYPOINT ["/start.sh"]