mirror of
https://github.com/docker/compose.git
synced 2025-07-02 19:34:25 +02:00
14 lines
343 B
Plaintext
14 lines
343 B
Plaintext
FROM ubuntu:latest
|
|
|
|
RUN apt-get update
|
|
RUN apt-get -y install curl grep
|
|
RUN curl https://get.docker.com | sh
|
|
|
|
COPY install_linux.sh /scripts/install_linux.sh
|
|
RUN chmod +x /scripts/install_linux.sh
|
|
RUN /scripts/install_linux.sh
|
|
RUN docker version | grep Azure
|
|
|
|
# check we can update
|
|
RUN /scripts/install_linux.sh
|
|
RUN docker version | grep Azure |