From 7abdee7101584bc7f58c7e11b3e510031fc6c3c2 Mon Sep 17 00:00:00 2001 From: jvivian Date: Sat, 9 Mar 2024 11:27:31 -0800 Subject: [PATCH] Update dockerfile to include git for development Fixes #61 --- Dockerfile | 4 ++++ environment.yml | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6b0ce35..8cf029e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,10 @@ FROM python:3.9-slim-buster ENV POETRY_VERSION=1.4 \ POETRY_VIRTUALENVS_CREATE=false + +# Install dev tools +RUN apt-get update -y && apt-get install git -y + # Install poetry RUN pip install "poetry==$POETRY_VERSION" diff --git a/environment.yml b/environment.yml index cc50f3c..3534237 100644 --- a/environment.yml +++ b/environment.yml @@ -4,6 +4,3 @@ channels: dependencies: - python=3.10 - poetry - - pip - - pip: - - "urllib3>=1.26.16,<2.0.0"