Skip to content
Open
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
17 changes: 17 additions & 0 deletions .github/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ RUN go install -v \
FROM docker.io/erlang:${OTP_VSN}-alpine AS ejabberd

RUN apk -U add --no-cache \
python3 \
py3-pip \
build-base \
postgresql-dev \
python3-dev \
autoconf \
automake \
bash \
Expand All @@ -37,6 +42,9 @@ RUN apk -U add --no-cache \
yaml-dev \
zlib-dev

# Install Python packages globally
RUN pip3 install --no-cache-dir --break-system-packages bcrypt psycopg2

ARG ELIXIR_VSN
RUN wget -O - https://github.com/elixir-lang/elixir/archive/v$ELIXIR_VSN.tar.gz \
| tar -xzf -
Expand Down Expand Up @@ -171,6 +179,15 @@ RUN apk -U upgrade --available --no-cache \
&& rm /tmp/runDeps \
&& ln -fs /usr/lib/libtdsodbc.so.0 /usr/lib/libtdsodbc.so

RUN apk -U add --no-cache \
python3 \
py3-pip \
build-base \
postgresql-dev \
python3-dev
# Install Python packages globally
RUN pip3 install --no-cache-dir --break-system-packages bcrypt psycopg2

ARG USER
ARG UID
ARG HOME
Expand Down
Loading