mirror of
https://github.com/XRPLF/rippled.git
synced 2026-09-27 15:28:03 +00:00
11 lines
382 B
Docker
11 lines
382 B
Docker
ARG BASE_IMAGE=debian:trixie
|
|
|
|
FROM ${BASE_IMAGE}
|
|
|
|
# Bind-mounted rather than copied in, so the installer never lands in a layer.
|
|
RUN --mount=type=bind,source=bin/install-packaging-tools.sh,target=/install-packaging-tools.sh \
|
|
/install-packaging-tools.sh
|
|
|
|
# See ../README.md, "Publishing from other repositories".
|
|
COPY package/docker/publish_pkg.py /usr/local/bin/publish_pkg.py
|