add example dockerfile

This commit is contained in:
Matthias Kadenbach 2017-02-23 13:13:02 -08:00
parent ec5c0ac3e0
commit 5645143baa
No known key found for this signature in database
GPG Key ID: DC1F4DC6D31A7031
1 changed files with 12 additions and 0 deletions

12
cli/examples/Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM ubuntu:xenial
RUN apt-get update && \
apt-get install -y curl apt-transport-https
RUN curl -L https://packagecloud.io/mattes/migrate/gpgkey | apt-key add - && \
echo "deb https://packagecloud.io/mattes/migrate/ubuntu/ xenial main" > /etc/apt/sources.list.d/migrate.list && \
apt-get update && \
apt-get install -y migrate
RUN migrate -version