Skip to content

Commit

Permalink
Add docker support
Browse files Browse the repository at this point in the history
  • Loading branch information
xcompass committed Jul 17, 2017
1 parent dd31aee commit db0f2dc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.git
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM python:2.7-alpine3.6

RUN apk add --update --no-cache git

WORKDIR /src

COPY . .

RUN pip install --no-cache-dir -e .

CMD [ "github2gitlab" ]

0 comments on commit db0f2dc

Please sign in to comment.