Dockerfile added

This commit is contained in:
SG
2025-06-05 14:30:32 +03:00
parent f9f6d70d8e
commit f125591062
2 changed files with 8 additions and 1 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3
RUN pip install Jinja2 markdown python-frontmatter
COPY . /app
WORKDIR /app
RUN useradd -ms /bin/bash hydrogen
USER hydrogen
ENTRYPOINT ["python", "hydrogen.py"]