docker-playground/osmo-msc-latest/Dockerfile

29 lines
498 B
Docker

ARG USER
ARG DISTRO
FROM $USER/$DISTRO-obs-latest
# 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-msc && \
apt-get clean \
;; \
centos*) \
dnf install -y \
osmo-msc \
;; \
esac
WORKDIR /tmp
VOLUME /data
COPY osmo-msc.cfg /data/osmo-msc.cfg
WORKDIR /data
CMD ["/bin/sh", "-c", "/usr/bin/osmo-msc -c /data/osmo-msc.cfg >/data/osmo-msc.log 2>&1"]
#EXPOSE