We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bce251b commit ff7f53fCopy full SHA for ff7f53f
dockerbuild/Dockerfile
@@ -2,7 +2,7 @@
2
# with broader compatibility, down to Debian bullseye & Ubuntu focal.
3
FROM rust:bullseye
4
5
-ENV DEBIAN_FRONTEND noninteractive
+ENV DEBIAN_FRONTEND=noninteractive
6
7
RUN curl --proto "=https" -L https://yarnpkg.com/latest.tar.gz | tar xvz && mv yarn-* /yarn && ln -s /yarn/bin/yarn /usr/bin/yarn
8
RUN apt-get -qq update && apt-get -y -qq dist-upgrade && \
@@ -16,8 +16,8 @@ RUN apt-get -qq update && apt-get -y -qq dist-upgrade && \
16
apt-get purge -y --auto-remove && rm -rf /var/lib/apt/lists/*
17
RUN ln -s /usr/bin/python3 /usr/bin/python & ln -s /usr/bin/pip3 /usr/bin/pip
18
19
-ENV DEBUG_COLORS true
20
-ENV FORCE_COLOR true
+ENV DEBUG_COLORS=true
+ENV FORCE_COLOR=true
21
22
WORKDIR /project
23
0 commit comments