diff --git a/.github/actions/install-env/action.yml b/.github/actions/install-env/action.yml index 34ae483..934ed32 100644 --- a/.github/actions/install-env/action.yml +++ b/.github/actions/install-env/action.yml @@ -33,7 +33,7 @@ runs: - name: Install dependencies shell: bash if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' - run: poetry install --no-interaction --no-root --with api + run: poetry install --no-interaction --no-root --with dev - name: Install project shell: bash diff --git a/Dockerfile b/Dockerfile index b699b0a..d8824a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /code RUN pip3 install poetry COPY pyproject.toml poetry.lock ./ -COPY sdk ./sdk +COPY sdk/ ./sdk RUN poetry config virtualenvs.create false -RUN poetry install --with ui +RUN poetry install --with ui --no-interaction --no-ansi RUN pip install river diff --git a/docker-compose.yaml b/docker-compose.yaml index 3e628f0..bdf04f7 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,6 +1,5 @@ -version: '3' +version: "3" services: - postgres: image: postgres environment: @@ -117,6 +116,5 @@ services: depends_on: - api - volumes: postgres: