docker-playground/osmo-hnodeb-latest/Dockerfile

29 lines
560 B
Docker

ARG USER
ARG DISTRO
ARG OSMOCOM_REPO_VERSION="latest"
FROM $USER/$DISTRO-obs-$OSMOCOM_REPO_VERSION
# Arguments used after FROM must be specified again
ARG DISTRO
RUN case "$DISTRO" in \
debian*) \
apt-get update && \
apt-get install -y --no-install-recommends \
osmo-hnodeb && \
apt-get clean \
;; \
centos*) \
dnf install -y \
osmo-hnodeb \
;; \
esac
WORKDIR /tmp
VOLUME /data
COPY osmo-hnodeb.cfg /data/osmo-hnodeb.cfg
WORKDIR /data
CMD ["/bin/sh", "-c", "/usr/bin/osmo-hnodeb -c /data/osmo-hnodeb.cfg >/data/osmo-hnodeb.log 2>&1"]