Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHalford committed Oct 13, 2023
1 parent c9ef6dd commit 0466e13
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 1 addition & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
version: '3'
version: "3"
services:

postgres:
image: postgres
environment:
Expand Down Expand Up @@ -117,6 +116,5 @@ services:
depends_on:
- api


volumes:
postgres:

0 comments on commit 0466e13

Please sign in to comment.