-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathDockerfile.armv7l
More file actions
35 lines (27 loc) · 795 Bytes
/
Dockerfile.armv7l
File metadata and controls
35 lines (27 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FROM python:3.11-slim-bookworm
WORKDIR /usr/src/reminiscence
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
build-essential \
libpq-dev \
libxml2 \
libxml2-dev \
libxslt1-dev \
python-dev-is-python3 \
python3-pyqt5 \
python3-pyqt5.qtwebengine \
libpython3-all-dev \
zlib1g-dev \
chromium \
netcat-traditional \
git \
htop \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN pip install git+https://github.com/kanishka-linux/hlspy
COPY . /usr/src/reminiscence
RUN bash
RUN mkdir -p logs archive tmp \
&& python manage.py applysettings --docker yes \
&& python manage.py generatesecretkey