Skip to content

Commit f4ebe37

Browse files
authored
Fix -e making its way into pip.conf
1 parent d4fff73 commit f4ebe37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ RUN cd Python-${VERSION} && ./configure && make -j$(nproc) && make install
1515

1616
RUN rm -rf Python-${VERSION} Python-${VERSION}.tgz /etc/apt/sources.list.d/debsrc.list
1717

18-
RUN echo -e "[global]\nextra-index-url=https://www.piwheels.org/simple" > /etc/pip.conf
18+
RUN echo "[global]\nextra-index-url=https://www.piwheels.org/simple" > /etc/pip.conf
1919
# replicate raspberry pi os pip.conf
2020

2121
# remove existing python3
22-
RUN apt remove -y python3
22+
RUN apt remove -y python3

0 commit comments

Comments
 (0)