Skip to content

Commit

Permalink
chore(deps): bump gunicorn from 20.1.0 to 21.2.0 in /appcontainer (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
machikoyasuda authored Sep 18, 2023
2 parents 847b75d + 2128182 commit 4ac21ab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cal-itp/docker-python-web:app
FROM docker-python-web:app

# install devcontainer requirements
COPY .devcontainer/requirements.txt .devcontainer/requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion appcontainer/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
gunicorn==20.1.0
gunicorn==21.2.0
8 changes: 4 additions & 4 deletions compose.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: cal-itp/docker-python-web
name: docker-python-web

services:
app:
build:
context: .
dockerfile: appcontainer/Dockerfile
image: cal-itp/docker-python-web:app
image: docker-python-web:app
entrypoint: /bin/bash
ports:
- "8000"
Expand All @@ -16,15 +16,15 @@ services:
build:
context: .
dockerfile: .devcontainer/Dockerfile
image: cal-itp/docker-python-web:dev
image: docker-python-web:dev
entrypoint: sleep infinity
ports:
- "8000"
volumes:
- .:/home/calitp/app

docs:
image: cal-itp/docker-python-web:dev
image: docker-python-web:dev
entrypoint: mkdocs
command: serve --dev-addr "0.0.0.0:8001"
ports:
Expand Down

0 comments on commit 4ac21ab

Please sign in to comment.