Skip to content

Commit 6bfea68

Browse files
committed
Removed pip install into old virtualenv location from Dockerfile, and fixed an rsyslog config issue.
- Legacy-Id: 18257
1 parent 8a4f7d4 commit 6bfea68

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@ RUN apt-get clean && rm -rf /var/lib/apt/lists/*
131131
RUN sed -i -e 's/^. en_US/en_US/' -e 's/^. en_GB/en_GB/' -e 's/^. en_IE/en_IE/' /etc/locale.gen
132132
RUN locale-gen
133133

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+
134137
# Set up root password
135138
RUN echo "root:root" | chpasswd
136139

@@ -168,9 +171,6 @@ RUN mkdir -p $DDIR
168171
WORKDIR $DDIR
169172

170173
COPY requirements.txt ./
171-
RUN pip$PYREV --no-cache-dir install -r requirements.txt
172-
173-
COPY settings_local.py ./
174174
COPY setprompt ./
175175

176176
COPY docker-init.sh /docker-init.sh

0 commit comments

Comments
 (0)