diff --git a/Dockerfile b/Dockerfile index 11b79dd..d68d4e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ -FROM python:3.10-alpine +FROM python:latest COPY requirements.txt requirements.txt +RUN pip install --upgrade pip RUN pip install --no-cache-dir -r requirements.txt COPY . src diff --git a/requirements.txt b/requirements.txt index 5ff65d6..f8648a8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ Django djangorestframework>=3.13.1,<3.14.0 PILLOW -MySQLdb \ No newline at end of file +mysqlclient \ No newline at end of file