dockerfile, req update

This commit is contained in:
Kikimanox
2022-08-29 12:45:08 +02:00
parent 64e10542f2
commit 3e38875485
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -1,10 +1,11 @@
FROM python:3.6-alpine
FROM python:3.9
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY requirements.txt /usr/src/app/
# RUN pip install --upgrade pip
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . /usr/src/app