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
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
3 changed files with 2 additions and 3 deletions

View File

@ -32,7 +32,6 @@ variables:
APP_VERSION: "${CI_COMMIT_REF_NAME}"
APP_ASSET: "${CI_PROJECT_NAME}_${CI_COMMIT_REF_NAME}_${ARCH}.tar.gz"
CYPRESS_INSTALL_BINARY: 0
HEX_MIRROR: https://cdn.jsdelivr.net/hex
cache:
key: "${CI_COMMIT_REF_SLUG}-${CI_COMMIT_SHORT_SHA}"

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