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

Commit 5645143

Browse files
committed
add example dockerfile
1 parent ec5c0ac commit 5645143

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

cli/examples/Dockerfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM ubuntu:xenial
2+
3+
RUN apt-get update && \
4+
apt-get install -y curl apt-transport-https
5+
6+
RUN curl -L https://packagecloud.io/mattes/migrate/gpgkey | apt-key add - && \
7+
echo "deb https://packagecloud.io/mattes/migrate/ubuntu/ xenial main" > /etc/apt/sources.list.d/migrate.list && \
8+
apt-get update && \
9+
apt-get install -y migrate
10+
11+
RUN migrate -version
12+

0 commit comments

Comments
 (0)