diff --git a/.gitignore b/.gitignore index 46a471d..8726ba8 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,7 @@ docker-compose.yaml *.jpg *.png *.gif + +# Writing +writing + diff --git a/Dockerfile b/Dockerfile index 67b613a..9360969 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,9 +4,7 @@ FROM python:3.12.2-slim-bookworm RUN apt-get update && apt-get upgrade -y -RUN useradd -m app - -USER app +RUN groupadd -r app && useradd -r -g app app COPY . . @@ -15,4 +13,6 @@ RUN python3 -m pip install -r requirements.txt WORKDIR ./app +USER app + CMD ["python3", "-u", "app.py"] diff --git a/app/static/writing.html b/app/static/writing.html new file mode 100644 index 0000000..44de92c --- /dev/null +++ b/app/static/writing.html @@ -0,0 +1,9 @@ + + + + home +
+
+ Scream March 27th, 2024 + + \ No newline at end of file diff --git a/app/templates/index.html b/app/templates/index.html index a5bfb0c..51412b8 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -14,11 +14,12 @@