Skip to content

Commit ff7f53f

Browse files
authored
Use modern Dockerfile env format to silence warnings (#2171)
1 parent bce251b commit ff7f53f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dockerbuild/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# with broader compatibility, down to Debian bullseye & Ubuntu focal.
33
FROM rust:bullseye
44

5-
ENV DEBIAN_FRONTEND noninteractive
5+
ENV DEBIAN_FRONTEND=noninteractive
66

77
RUN curl --proto "=https" -L https://yarnpkg.com/latest.tar.gz | tar xvz && mv yarn-* /yarn && ln -s /yarn/bin/yarn /usr/bin/yarn
88
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 && \
1616
apt-get purge -y --auto-remove && rm -rf /var/lib/apt/lists/*
1717
RUN ln -s /usr/bin/python3 /usr/bin/python & ln -s /usr/bin/pip3 /usr/bin/pip
1818

19-
ENV DEBUG_COLORS true
20-
ENV FORCE_COLOR true
19+
ENV DEBUG_COLORS=true
20+
ENV FORCE_COLOR=true
2121

2222
WORKDIR /project
2323

0 commit comments

Comments
 (0)