Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
elixir 1.18.4-otp-28
erlang 28.0.1
erlang 28.0.2
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# - Ex: hexpm/elixir:1.15.4-erlang-26.0.2-debian-bullseye-20230612-slim
#
ARG ELIXIR_VERSION=1.18.4
ARG OTP_VERSION=28.0.1
ARG DEBIAN_VERSION=bullseye-20250610-slim
ARG OTP_VERSION=28.0.2
ARG DEBIAN_VERSION=bullseye-20250721-slim

ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"
Expand All @@ -27,13 +27,13 @@

# labels from https://github.com/opencontainers/image-spec/blob/master/annotations.md
LABEL org.opencontainers.image.authors=conradwt@gmail.com
LABEL org.opencontainers.image.created=$CREATED_DATE

Check warning on line 30 in Dockerfile

View workflow job for this annotation

GitHub Actions / Call Docker Build / Build+Push

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$CREATED_DATE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.revision=$SOURCE_COMMIT

Check warning on line 31 in Dockerfile

View workflow job for this annotation

GitHub Actions / Call Docker Build / Build+Push

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$SOURCE_COMMIT' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.title="Zero to GraphQL Using Elixir"
LABEL org.opencontainers.image.url=https://hub.docker.com/u/conradwt/zero-to-graphql-using-elixir
LABEL org.opencontainers.image.source=https://github.com/conradwt/zero-to-graphql-using-elixir
LABEL org.opencontainers.image.licenses=MIT
LABEL com.conradtaylor.elixir_version=$ELIXIR_VERSION

Check warning on line 36 in Dockerfile

View workflow job for this annotation

GitHub Actions / Call Docker Build / Build+Push

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$ELIXIR_VERSION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

# install build dependencies
RUN apt-get update -y && apt-get install -y build-essential git \
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright © 2018 - 2024 Conrad Taylor. All rights reserved.
Copyright © 2018 - 2025 Conrad Taylor. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ The purpose of this example is to provide details as to how one would go about u

- Elixir 1.18.4 or newer

- Erlang 28.0.1 or newer
- Erlang 28.0.2 or newer

- Phoenix 1.7.21 or newer

- PostgreSQL 17.5 or newer

Note: This tutorial was updated on macOS 15.5.
Note: This tutorial was updated on macOS 26 (Tahoe).

## Communication

Expand Down Expand Up @@ -628,4 +628,4 @@ Zero to GraphQL Using Elixir is released under the [MIT license](./LICENSE.md).

## Copyright

Copyright © 2018 - 2024 Conrad Taylor. All rights reserved.
Copyright © 2018 - 2025 Conrad Taylor. All rights reserved.