remove tini from container

This commit is contained in:
Jake Jarvis 2020-08-02 15:49:59 -04:00
parent 7080f96822
commit 217b270a81
Signed by: jake
GPG Key ID: 2B0C9CF251E69A39

View File

@ -24,10 +24,6 @@ RUN apt-get update \
RUN qemu-system-i386 --version \
&& ruby --version
ENV TINI_VERSION 0.19.0
ADD https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini /usr/local/bin/tini
RUN chmod +x /usr/local/bin/tini
# ----
# TODO: make *each container* a websockets server so we can load balance, etc.
@ -57,5 +53,4 @@ RUN chmod +x /usr/local/bin/boot-vm \
USER vm
WORKDIR /home/vm
ENTRYPOINT ["tini", "--"]
CMD ["boot-vm"]
ENTRYPOINT ["boot-vm"]