Skip to content

Commit

Permalink
Bump elixir from 1.17.1-alpine to 1.17.2-alpine in the docker-patchin…
Browse files Browse the repository at this point in the history
…g group (#217)

* Bump elixir in the docker-patching group

Bumps the docker-patching group with 1 update: elixir.


Updates `elixir` from 1.17.1-alpine to 1.17.2-alpine

---
updated-dependencies:
- dependency-name: elixir
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: docker-patching
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update ci.yml

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lewis Goddard <[email protected]>
  • Loading branch information
dependabot[bot] and lewisgoddard authored Aug 3, 2024
1 parent 6f22399 commit 81cb793
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
uses: actions/[email protected]

- name: Compile
run: docker-compose build
run: docker compose build

- name: Format
run: docker-compose run dashboard mix format
run: docker compose run dashboard mix format

Lint_Credo:
name: Lint (Credo)
Expand All @@ -33,10 +33,10 @@ jobs:
uses: actions/[email protected]

- name: Compile
run: docker-compose build
run: docker compose build

- name: Lint
run: docker-compose run dashboard mix credo --all
run: docker compose run dashboard mix credo --all

Lint_Eslint:
name: Lint (ESLint)
Expand All @@ -47,10 +47,10 @@ jobs:
uses: actions/[email protected]

- name: Compile
run: docker-compose build
run: docker compose build

- name: Lint
run: docker-compose run -w /opt/app/assets dashboard npm run lint:js
run: docker compose run -w /opt/app/assets dashboard npm run lint:js

Lint_Stylelint:
name: Lint (Stylelint)
Expand All @@ -61,10 +61,10 @@ jobs:
uses: actions/[email protected]

- name: Compile
run: docker-compose build
run: docker compose build

- name: Lint
run: docker-compose run -w /opt/app/assets dashboard npm run lint:css
run: docker compose run -w /opt/app/assets dashboard npm run lint:css

Test_Mix:
name: Test (Mix)
Expand All @@ -75,10 +75,10 @@ jobs:
uses: actions/[email protected]

- name: Compile
run: docker-compose build
run: docker compose build

- name: Test
run: docker-compose run dashboard mix test
run: docker compose run dashboard mix test

Build:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Dockerfile
# Building for production

FROM elixir:1.17.1-alpine as build
FROM elixir:1.17.2-alpine as build

RUN mkdir -p /opt/app

Expand Down Expand Up @@ -36,7 +36,7 @@ RUN mix release
# Dockerfile
# Runing in production

FROM elixir:1.17.1-alpine as release
FROM elixir:1.17.2-alpine as release

RUN apk add --no-cache bash git openssh openssl

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-development
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Dockerfile
# A dockerfile for development

FROM elixir:1.17.1-alpine
FROM elixir:1.17.2-alpine

RUN mkdir -p /opt/app

Expand Down

0 comments on commit 81cb793

Please sign in to comment.