dockerfileの追加

This commit is contained in:
yuuki
2024-03-04 03:05:11 +00:00
parent a7aaaa8308
commit e65b230e95
2 changed files with 15 additions and 0 deletions

9
.dockerignore Normal file
View File

@@ -0,0 +1,9 @@
/.git
/.gitignore
/Dockerfile
/.dockerignore
/__pycache__
/public/songs

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:3
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
RUN pip install waitress
CMD ["waitress-serve", "app:app"]