10 lines
225 B
Docker
10 lines
225 B
Docker
FROM alpine:latest
|
|
RUN apk --no-cache add curl bash git doctl openssh
|
|
|
|
WORKDIR /root
|
|
|
|
COPY orchestrating.sh orchestrating.sh
|
|
COPY cleanup.sh cleanup.sh
|
|
RUN chmod +x orchestrating.sh cleanup.sh
|
|
|
|
CMD ["tail" ,"-f" ,"/dev/null"] |