Update Dockerfile to work on latest version of Docker (#6087)

* Update Dockerfile to use the non legacy syntax `ENV key=value` instead of `ENV key value`
This commit is contained in:
Jimmy Chen
2024-07-15 13:43:03 +10:00
committed by GitHub
parent 2f0af2be89
commit cb1e8dc3f9
2 changed files with 3 additions and 3 deletions

View File

@@ -4,8 +4,8 @@ COPY . lighthouse
ARG FEATURES
ARG PROFILE=release
ARG CARGO_USE_GIT_CLI=true
ENV FEATURES $FEATURES
ENV PROFILE $PROFILE
ENV FEATURES=$FEATURES
ENV PROFILE=$PROFILE
ENV CARGO_NET_GIT_FETCH_WITH_CLI=$CARGO_USE_GIT_CLI
RUN cd lighthouse && make