Skip to content

Commit

Permalink
ci: optimise layers for deps
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBernstorff committed Oct 1, 2023
1 parent 0a03465 commit eea7e9b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ WORKDIR /app

# Install deps
COPY pyproject.toml /app/
RUN pip install -e .[dev]
RUN pip install .[dev]
RUN pip install .[tests]

# Install the entire app
COPY . /app
RUN pip install -e .[dev, tests]
RUN pip install -e .

0 comments on commit eea7e9b

Please sign in to comment.