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
7 changes: 4 additions & 3 deletions .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
OTP_VERSION=24.3.4
OTP_VERSION=27.1.2
STEP_VERSION=0.24.3
THRIFT_VERSION=0.14.2.2
WOORL_VERSION=1.10
REBAR_VERSION=3.24
THRIFT_VERSION=0.14.2.3
WOORL_VERSION=1.10
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
ARG OTP_VERSION

FROM docker.io/library/erlang:${OTP_VERSION} AS builder

Check warning on line 3 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG docker.io/library/erlang:${OTP_VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

COPY . /holmes
WORKDIR /holmes
RUN make \
&& ./clone-proto-modules.sh /repos

FROM docker.io/library/erlang:${OTP_VERSION}-slim

Check warning on line 10 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG docker.io/library/erlang:${OTP_VERSION}-slim results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# hadolint ignore=DL3008,DL3013
Expand All @@ -24,11 +24,11 @@
netcat-openbsd \
jq \
python3-pip \
python3-six \
wget \
gnupg \
&& pip install --no-cache-dir six \
&& wget -O - -q https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /usr/share/keyrings/postgresql.gpg > /dev/null \
&& echo deb [arch=amd64,arm64,ppc64el signed-by=/usr/share/keyrings/postgresql.gpg] http://apt.postgresql.org/pub/repos/apt/ bullseye-pgdg main | tee /etc/apt/sources.list.d/postgresql.list \
&& echo deb [arch=amd64,arm64,ppc64el signed-by=/usr/share/keyrings/postgresql.gpg] http://apt.postgresql.org/pub/repos/apt/ bookworm-pgdg main | tee /etc/apt/sources.list.d/postgresql.list \
&& apt-get --yes update \
&& apt-get --yes --no-install-recommends install postgresql-client-17 \
&& apt-get clean \
Expand Down
Loading