Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Chrisyhjiang committed May 15, 2024
1 parent dcc51ce commit fae7c0a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions samples/python/flask/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ WORKDIR /app
# Install required packages
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
build-essential \
python3-dev \
build-essential \
python3-dev \
&& rm -rf /var/lib/apt/lists/*

# Copy the current directory contents into the container at /app
Expand Down
4 changes: 2 additions & 2 deletions samples/python/flask/compose.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '3.9'
version: "3.9"
services:
service1:
restart: unless-stopped
Expand All @@ -8,7 +8,7 @@ services:
deploy:
resources:
reservations:
cpus: '1.0'
cpus: "1.0"
memory: 512M
ports:
- mode: ingress
Expand Down
5 changes: 2 additions & 3 deletions samples/python/flask/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
Flask==2.2.5
Werkzeug==0.16.1
MarkupSafe==1.1.1

Werkzeug==2.2.2
MarkupSafe==2.1.1

0 comments on commit fae7c0a

Please sign in to comment.