Add Dockerfile

This commit is contained in:
minchulahn
2023-06-26 11:45:32 +09:00
parent e7717b3c6c
commit 56e8c121da
2 changed files with 7 additions and 1 deletions

4
Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM python:3.11-slim
WORKDIR app
COPY ./requirements.txt ./
RUN pip install --upgrade pip && pip install -r requirements.txt