Add misisng iproute2 package, fail on errors
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
bd8406a8d2
commit
ed1904483a
|
@ -12,5 +12,6 @@ COPY --from=opam /home/opam/unipi.spt /unipi.spt
|
||||||
COPY --from=opam /home/opam/solo5-elftool /usr/local/bin/solo5-elftool
|
COPY --from=opam /home/opam/solo5-elftool /usr/local/bin/solo5-elftool
|
||||||
COPY --from=opam /home/opam/solo5-spt /usr/local/bin/solo5-spt
|
COPY --from=opam /home/opam/solo5-spt /usr/local/bin/solo5-spt
|
||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
|
RUN apt update && apt install -y iproute2
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
ENTRYPOINT ["/entrypoint.sh", "/unipi.spt"]
|
ENTRYPOINT ["/entrypoint.sh", "/unipi.spt"]
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/sh -e
|
||||||
|
|
||||||
if [ "$#" -lt 1 ]; then
|
if [ "$#" -lt 1 ]; then
|
||||||
echo Must provide the unikernel as argument >&2
|
echo Must provide the unikernel as argument >&2
|
||||||
|
|
Loading…
Reference in a new issue