Skip to content

Commit

Permalink
パッケージのバージョンを新しいものに置き換え
Browse files Browse the repository at this point in the history
  • Loading branch information
aozoraUS committed Jun 9, 2024
1 parent a14fd4d commit 26a5b19
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docker-compose-app-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
- ./db/initdb:/docker-entrypoint-initdb.d # test用dbが必要な場合

app:
image: python:3.8
image: python:3.11
depends_on:
- db
restart: always
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"

services:
app:
image: python:3.8
image: python:3.11
restart: always
volumes:
- .:/workspace:cached
Expand All @@ -17,7 +17,7 @@ services:
phpmyadmin:
image: phpmyadmin
restart: always
environment:
environment:
PMA_ARBITRARY: 1
ports:
- "8080:80"
2 changes: 1 addition & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
- ./db/initdb:/docker-entrypoint-initdb.d # test用dbが必要な場合

app:
image: python:3.8
image: python:3.11
depends_on:
- db
restart: always
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- ./db/initdb:/docker-entrypoint-initdb.d # test用dbが必要な場合

app:
image: python:3.8
image: python:3.11
depends_on:
- db
restart: always
Expand Down
9 changes: 5 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
alembic==1.8.0
#factory==1.2##Error Occured
factory_boy==3.2.1
fastapi[all]==0.79.0
fastapi==0.111.0
uvicorn
pydantic==1.10
hashids==1.3.1
jose==1.0.0
passlib==1.7.4
pydantic==1.10.6
pytest
python_jose==3.3.0
requests
SQLAlchemy==1.4.37
SQLAlchemy_Utils==0.38.2
typing_extensions==4.3.0
yarg==0.1.9
typing_extensions
yarg
mysqlclient
python-dotenv
ulid-py
Expand Down

0 comments on commit 26a5b19

Please sign in to comment.