From 465362b8885cbaa50763e65daca85c7b9630646e Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 7 Jan 2024 06:58:10 -0500 Subject: [PATCH] feat(seacogs): install dependencies --- SeaCogs/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/SeaCogs/Dockerfile b/SeaCogs/Dockerfile index 37b122e..686e274 100644 --- a/SeaCogs/Dockerfile +++ b/SeaCogs/Dockerfile @@ -34,3 +34,9 @@ RUN python3.11 --version RUN python3.11 -m pip install poetry RUN poetry config virtualenvs.create false + +# Install dependencies + +RUN curl -sSL https://coastalcommits.com/SeaswimmerTheFsh/SeaCogs/raw/branch/main/pyproject.toml -o pyproject.toml +RUN curl -sSL https://coastalcommits.com/SeaswimmerTheFsh/SeaCogs/raw/branch/main/poetry.lock -o poetry.lock +RUN poetry install --with dev --with docs --no-root