Spaces:
Sleeping
Sleeping
molokhovdmitry
commited on
Commit
•
7b432a1
1
Parent(s):
2a1c3cb
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
FROM python:3.10-slim
|
2 |
-
WORKDIR /
|
3 |
COPY requirements.txt .
|
|
|
4 |
RUN pip install --no-cache-dir -r requirements.txt
|
5 |
COPY . .
|
6 |
EXPOSE 8000
|
|
|
1 |
FROM python:3.10-slim
|
2 |
+
WORKDIR /app
|
3 |
COPY requirements.txt .
|
4 |
+
RUN python -m pip install --upgrade pip
|
5 |
RUN pip install --no-cache-dir -r requirements.txt
|
6 |
COPY . .
|
7 |
EXPOSE 8000
|