Skip to content

Commit

Permalink
Merge pull request #21 from baloise/main
Browse files Browse the repository at this point in the history
Update slim
  • Loading branch information
robbizbal authored Oct 31, 2024
2 parents c827828 + b222d36 commit b65e823
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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" \
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/static/styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ body {
flex-direction: column;
min-height: 100vh;
margin: 0;
font-family: "Lucida Console", monospace;
}

main {
Expand Down

0 comments on commit b65e823

Please sign in to comment.