1
0

copy files over to example repo

This commit is contained in:
2022-09-18 18:47:53 -07:00
commit f124c47d34
5 changed files with 115 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM alpine:3.14
ENV DOCKER_HOST=unix:///var/run/docker.sock
RUN apk --no-cache add --update docker openrc bash
RUN rc-update add docker boot
COPY docker-setup /bin/
RUN chmod +x /bin/docker-setup
COPY docker-remote-tag /bin/
RUN chmod +x /bin/docker-remote-tag
CMD [ "/bin/docker-setup" ]
ENTRYPOINT [ "/bin/bash", "-l", "-c" ]