Skip to content

Commit

Permalink
chore: equalize elixir stack versions
Browse files Browse the repository at this point in the history
  • Loading branch information
k1rill-fedoseev committed Jan 19, 2024
1 parent 7be2cb7 commit b20970c
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ on:

env:
MIX_ENV: test
OTP_VERSION: "25.2.1"
OTP_VERSION: "25.3.2.8"
ELIXIR_VERSION: "1.14.5"
ACCOUNT_AUTH0_DOMAIN: "blockscoutcom.us.auth0.com"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
required: true

env:
OTP_VERSION: '25.2.1'
OTP_VERSION: '25.3.2.8'
ELIXIR_VERSION: '1.14.5'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-every-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- '**/README.md'
- 'docker-compose/*'
env:
OTP_VERSION: '25.2.1'
OTP_VERSION: '25.3.2.8'
ELIXIR_VERSION: '1.14.5'
RELEASE_VERSION: 6.0.0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-stability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
branches:
- production-stability
env:
OTP_VERSION: '25.2.1'
OTP_VERSION: '25.3.2.8'
ELIXIR_VERSION: '1.14.5'
jobs:
push_to_registry:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-for-suave.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
branches:
- production-suave
env:
OTP_VERSION: '25.2.1'
OTP_VERSION: '25.3.2.8'
ELIXIR_VERSION: '1.14.5'
jobs:
push_to_registry:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- '**/README.md'
- 'docker-compose/*'
env:
OTP_VERSION: '25.2.1'
OTP_VERSION: '25.3.2.8'
ELIXIR_VERSION: '1.14.5'
RELEASE_VERSION: 6.0.0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-additional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
types: [published]

env:
OTP_VERSION: '25.2.1'
OTP_VERSION: '25.3.2.8'
ELIXIR_VERSION: '1.14.5'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
types: [published]

env:
OTP_VERSION: '25.2.1'
OTP_VERSION: '25.3.2.8'
ELIXIR_VERSION: '1.14.5'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
elixir 1.14.5-otp-25
erlang 25.3.2.6
erlang 25.3.2.8
nodejs 18.17.1
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hexpm/elixir:1.14.5-erlang-24.2.2-alpine-3.18.2 AS builder
FROM hexpm/elixir:1.14.5-erlang-25.3.2.8-alpine-3.18.4 AS builder

WORKDIR /app

Expand Down Expand Up @@ -64,7 +64,7 @@ RUN mkdir -p /opt/release \
&& mv _build/${MIX_ENV}/rel/blockscout /opt/release

##############################################################
FROM hexpm/elixir:1.14.5-erlang-24.2.2-alpine-3.18.2
FROM hexpm/elixir:1.14.5-erlang-25.3.2.8-alpine-3.18.4

ARG RELEASE_VERSION
ENV RELEASE_VERSION=${RELEASE_VERSION}
Expand Down
4 changes: 1 addition & 3 deletions docker/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# BlockScout Docker Integration

This integration is not production ready, and should be used for local BlockScout deployment only.

For usage instructions and ENV variables, see the [docker integration documentation](https://docs.blockscout.com/for-developers/information-and-settings/docker-integration-local-use-only).
For usage instructions and ENV variables, see the [docker integration documentation](https://docs.blockscout.com/for-developers/deployment/docker-compose-deployment).

0 comments on commit b20970c

Please sign in to comment.