There was an error while loading. Please reload this page.
1 parent 8a4f7d4 commit 6bfea68Copy full SHA for 6bfea68
1 file changed
docker/Dockerfile
@@ -131,6 +131,9 @@ RUN apt-get clean && rm -rf /var/lib/apt/lists/*
131
RUN sed -i -e 's/^. en_US/en_US/' -e 's/^. en_GB/en_GB/' -e 's/^. en_IE/en_IE/' /etc/locale.gen
132
RUN locale-gen
133
134
+# Remove an rsyslog module that we don't need, which also requires extra permissions
135
+RUN sed -i -e '/load="imklog"/d' /etc/rsyslog.conf
136
+
137
# Set up root password
138
RUN echo "root:root" | chpasswd
139
@@ -168,9 +171,6 @@ RUN mkdir -p $DDIR
168
171
WORKDIR $DDIR
169
172
170
173
COPY requirements.txt ./
-RUN pip$PYREV --no-cache-dir install -r requirements.txt
-
-COPY settings_local.py ./
174
COPY setprompt ./
175
176
COPY docker-init.sh /docker-init.sh
0 commit comments