Skip to content

Commit

Permalink
fix env deprecate warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Knifa committed Nov 29, 2024
1 parent f69ec98 commit 6b91444
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ RUN apk add --no-cache --virtual .build-deps-base \
make \
pkgconf

ENV CC clang
ENV CXX clang++
ENV CFLAGS "-O3"
ENV CXXFLAGS "-O3"
ENV MAKEFLAGS "-j$(nproc)"
ENV CC=clang
ENV CXX=clang++
ENV CFLAGS="-O3"
ENV CXXFLAGS="-O3"
ENV MAKEFLAGS="-j$(nproc)"

RUN mkdir -p /build
WORKDIR /build
Expand Down

0 comments on commit 6b91444

Please sign in to comment.