aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2019-12-01 13:58:03 -0800
committerGravatar MarkKoz <[email protected]>2019-12-01 13:58:03 -0800
commit467546b1ca42c84019bc4a32cf490829806de530 (patch)
tree045cc6896eb14fac508727ee5b4ff0678998acfb
parentMerge pull request #49 from makusu2/fixsync (diff)
Fix if statement for syncing dev dependencies in venv image
-rw-r--r--docker/venv.Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/venv.Dockerfile b/docker/venv.Dockerfile
index 85188fd..be15f08 100644
--- a/docker/venv.Dockerfile
+++ b/docker/venv.Dockerfile
@@ -10,4 +10,4 @@ ENV PIP_NO_CACHE_DIR=false \
COPY Pipfile Pipfile.lock /snekbox/
WORKDIR /snekbox
-RUN if [ -n "${DEV}" ]; pipenv sync --dev; then pipenv sync; fi
+RUN if [ -n "${DEV}" ]; then pipenv sync --dev; else pipenv sync; fi