Skip to content

Commit 9833685

Browse files
committed
build: update flask version used in example
Signed-off-by: David Karlsson <[email protected]>
1 parent 2ec3340 commit 9833685

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/build/building/packaging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ FROM ubuntu:22.04
8484

8585
# install app dependencies
8686
RUN apt-get update && apt-get install -y python3 python3-pip
87-
RUN pip install flask==2.1.*
87+
RUN pip install flask==3.0.*
8888

8989
# install app
9090
COPY hello.py /
@@ -181,7 +181,7 @@ The second `RUN` instruction installs the `flask` dependency required by the
181181
Python application.
182182

183183
```dockerfile
184-
RUN pip install flask==2.1.*
184+
RUN pip install flask==3.0.*
185185
```
186186

187187
A prerequisite for this instruction is that `pip` is installed into the build

0 commit comments

Comments
 (0)