The integrations tests use their own registry so avoid hitting docker hub rate limits. This was using a self signed certificate but instead use `--insecure-registry` to let the docker daemon use HTTP.
16 lines
275 B
Docker
16 lines
275 B
Docker
FROM ubuntu:22.04
|
|
|
|
WORKDIR /work
|
|
|
|
RUN apt-get update --fix-missing && apt-get -y install openssh-client openssl
|
|
|
|
RUN mkdir ssh && \
|
|
ssh-keygen -t rsa -f ssh/id_rsa -N ""
|
|
|
|
COPY registry-dns.conf .
|
|
COPY boot.sh .
|
|
|
|
HEALTHCHECK --interval=1s CMD pgrep sleep
|
|
|
|
CMD ["./boot.sh"]
|