Remove HEX_MIRROR uses

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2022-04-18 14:54:00 +02:00
parent 0b04980332
commit a731a96b58
3 changed files with 2 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ WORKDIR /mobilizon
# Elixir release
RUN source /root/.bashrc && \
HEX_MIRROR="https://cdn.jsdelivr.net/hex" mix deps.get --only prod && \
mix deps.get --only prod && \
mix compile && \
mix phx.digest.clean --all && \
mix release --path release/mobilizon && \

View File

@@ -20,7 +20,7 @@ COPY mix.exs mix.lock ./
ENV MIX_ENV=prod
RUN mix local.hex --force \
&& mix local.rebar --force \
&& HEX_MIRROR="https://cdn.jsdelivr.net/hex" mix deps.get
&& mix deps.get
COPY lib ./lib
COPY priv ./priv