diff --git a/Dockerfile b/Dockerfile index 8212e81..d35b63f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-bookworm +FROM --platform=linux/amd64 python:3.12.7-slim-bookworm # set metadata LABEL maintainer="culmat, trichie, robbizbal" \ @@ -22,6 +22,11 @@ WORKDIR /app # set script permissions RUN chmod +x entrypoint.sh setup.sh +RUN apt -y update \ + && apt install -y make \ + && apt clean autoclean \ + && rm -rf /var/lib/apt/lists/* + # create user #RUN useradd -ms /bin/bash anon && chown -R anon: /app RUN useradd -ms /bin/bash -G 0 anon diff --git a/src/static/styles/style.css b/src/static/styles/style.css index abea217..6211a21 100644 --- a/src/static/styles/style.css +++ b/src/static/styles/style.css @@ -4,6 +4,7 @@ body { flex-direction: column; min-height: 100vh; margin: 0; + font-family: "Lucida Console", monospace; } main {