Attempt to work with a custom primary Docker container.

This commit is contained in:
Dorian 2017-03-17 00:06:29 -04:00
parent f6de09b3da
commit d3f280325b
2 changed files with 16 additions and 5 deletions

View File

@ -9,11 +9,6 @@ jobs:
steps:
- checkout
- setup_docker_engine
- run:
name: Install Docker Compose
command: |
docker info
docker-compose version
- run:
name: Build Docker images

View File

@ -0,0 +1,16 @@
FROM python:3.6
RUN apt-get -y install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - \
&& add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/debian \
$(lsb_release -cs) \
stable" \
&& apt-get update \
&& apt-get install docker-ce \
&& pip install docker-compose