From 38868cea790b82b254f68bb18e9c188a38788af1 Mon Sep 17 00:00:00 2001 From: Derek DeJonghe Date: Fri, 25 May 2018 14:35:40 -0400 Subject: [PATCH] change the way dockerfile installs so that we dont have to change it all the time. --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 952813b..d589e4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,6 @@ WORKDIR /semver ADD ./ /semver -RUN python setup.py sdist -RUN pip install dist/semver-1.0.4.tar.gz +RUN pip install -e . CMD semver && semver_get_version