e8464b3a8b
CI / test (push) Successful in 7m42s
Publish erlang-builder and erlang-runtime as :latest, use them in prod and API test builds, auto-collect NIF libs, and sync CI to pull/push bases before eventhub build. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
437 B
Docker
14 lines
437 B
Docker
# EventHub — runtime: libs для relx-release (ERTS внутри release).
|
|
# ALPINE_VERSION MUST match erlang:28-alpine (сейчас 3.23).
|
|
# Публикуется как git.sabilin.com/eventhub/erlang-runtime:latest
|
|
ARG ALPINE_VERSION=3.23
|
|
FROM alpine:${ALPINE_VERSION}
|
|
|
|
RUN apk add --no-cache \
|
|
openssl libstdc++ libgcc ncurses-libs libsodium \
|
|
file \
|
|
&& mkdir -p /app/data \
|
|
&& chmod 777 /app/data
|
|
|
|
WORKDIR /app
|