Skip to content
This repository has been archived by the owner on Jun 28, 2018. It is now read-only.

Commit

Permalink
add example dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mattes committed Feb 23, 2017
1 parent ec5c0ac commit 5645143
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions cli/examples/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5645143

Please sign in to comment.