Skip to content

Commit

Permalink
Update cookbook.md (#783)
Browse files Browse the repository at this point in the history
The Python-Alpine image does not work anymore without installing additional dependencies (python-dev). It is possible to use python-slim instead. Also updated to the latest version.

Co-authored-by: michaelboulton <michaelboulton@users.noreply.github.com>
  • Loading branch information
onbcst and michaelboulton committed Jun 5, 2022
1 parent 7d4b098 commit 9a2e991
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/cookbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ any Pytest plugins as mentioned above):

```dockerfile
# tavern.Dockerfile
FROM python:3.9-alpine
FROM python:3.10-slim

RUN pip3 install tavern
```
Expand All @@ -38,7 +38,7 @@ Or if you need a specific version (hopefully you shouldn't):

```dockerfile
# tavern.Dockerfile
FROM python:3.9-alpine
FROM python:3.10-slim

ARG TAVERNVER
RUN pip3 install tavern==$TAVERNVER
Expand Down

0 comments on commit 9a2e991

Please sign in to comment.