build: Deploy ImHex-Web as a docker image

This commit is contained in:
WerWolv
2026-01-10 14:09:58 +01:00
parent 9e165ac4a1
commit d9eb01b526
2 changed files with 54 additions and 0 deletions

9
dist/web/Host.Dockerfile vendored Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.12-slim
WORKDIR /imhex
COPY ./out/ .
EXPOSE 9090
CMD [ "python", "/imhex/serve.py" ]