Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,12 @@ venv.bak/

# Other stuff
.env.example
.dockerignore
.gitignore
.github/
app.json
Dockerfile
LICENSE
Procfile
README.md
Pipfile
Expand Down
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ FROM python:3.9-slim as py

FROM py as build

RUN apt update && apt install -y g++
RUN apt-get update && apt-get install -y g++
COPY requirements.txt /
RUN pip install --prefix=/inst -U -r /requirements.txt

FROM py

ENV USING_DOCKER yes
COPY --from=build /inst /usr/local

WORKDIR /logviewer
CMD ["python", "app.py"]
COPY . /logviewer

RUN adduser --disabled-password --gecos '' app && \
chown -R app /logviewer
USER app