diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..ca30914 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +--- +kind: pipeline +type: docker +name: docker-build + +steps: + - name: greeting + image: docker:dind + volumes: + - name: dockersock + path: /var/run + commands: + - sleep 5 # give docker enough time to start + - docker ps -a diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..325b1e9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM manjarolinux/base:latest + +# Install ansible. +# +# python is already isntalled on this base image therefore we don't have to +# reinstall. +RUN pacman -S \ + --noconfirm \ + ansible