Files
kamal/test/integration/docker/shared/Dockerfile
Donal McBreen 4e811372f8 Integration test insecure registry
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.
2024-07-31 16:54:00 +01:00

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"]