Skip to content

Commit

Permalink
Merge pull request #84 from bonclay7/release-0.2.2
Browse files Browse the repository at this point in the history
Release 0.2.2
  • Loading branch information
bonclay7 authored May 22, 2018
2 parents 9381f3c + 6f6f34c commit c5cfe7f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 20 deletions.
17 changes: 11 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
FROM python:2.7
FROM python:3.6

WORKDIR /aws-amicleaner

ADD . .
RUN apt-get update && apt-get install -y \
vim \
awscli \
twine \
jq

RUN pip install -r requirements.txt
ENV PATH="${PATH}:/root/.local/bin/"

CMD amicleaner/cli.py -h
WORKDIR /aws-amicleaner
ADD . .
RUN python setup.py install
CMD bash
9 changes: 9 additions & 0 deletions Dockerfile-python2
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM python:2.7

WORKDIR /aws-amicleaner

ADD . .

RUN pip install -r requirements.txt

CMD amicleaner/cli.py -h
13 changes: 0 additions & 13 deletions Dockerfile-python3

This file was deleted.

2 changes: 1 addition & 1 deletion amicleaner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

__title__ = 'amicleaner'
__version__ = '0.2.0'
__version__ = '0.2.2'
__short_version__ = '.'.join(__version__.split('.')[:2])
__author__ = 'Guy Rodrigue Koffi'
__author_email__ = 'koffirodrigue@gmail.com'
Expand Down

0 comments on commit c5cfe7f

Please sign in to comment.