Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jbirddog committed Oct 9, 2024
1 parent d64ae29 commit 9485883
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM python:3.11.6-slim-bookworm AS base

WORKDIR /app

RUN pip install --upgrade pip
RUN pip install poetry==1.8.1 pytest-xdist==3.5.0

COPY . .
RUN poetry install --no-root

CMD ["poetry", "run", "pytest", "tests/"]

0 comments on commit 9485883

Please sign in to comment.