removed unused runtime

This commit is contained in:
john30
2018-12-26 18:04:26 +01:00
parent b5ade5734c
commit ce53e75c0d
3 changed files with 0 additions and 33 deletions
-25
View File
@@ -1,25 +0,0 @@
FROM debian:stretch-slim
RUN apt-get update && apt-get install -y \
logrotate libmosquitto1 libstdc++6 libc6 libgcc1 \
curl \
&& rm -rf /var/lib/apt/lists/*
LABEL maintainer "ebusd@ebusd.eu"
ENV EBUSD_VERSION 3.3
ENV EBUSD_ARCH amd64
LABEL version "${EBUSD_VERSION}-${EBUSD_ARCH}-mqtt1"
COPY ebusd-${EBUSD_VERSION}_${EBUSD_ARCH}_mqtt1.deb ebusd.deb
RUN dpkg -i ebusd.deb
RUN rm ebusd.deb
EXPOSE 8888
COPY docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["-f", "--scanconfig"]
@@ -1,8 +0,0 @@
#!/bin/bash
set -e
if [ "${1#-}" != "$1" ]; then
set -- ebusd "$@"
fi
exec "$@"
Binary file not shown.