Spaces:
Running
Running
Rename dockerfile to Dockerfile
Browse files- dockerfile → Dockerfile +3 -0
dockerfile → Dockerfile
RENAMED
@@ -2,7 +2,10 @@ FROM tiangolo/uvicorn-gunicorn:python3.11
|
|
2 |
|
3 |
LABEL maintainer="Sebastian Ramirez <tiangolo@gmail.com>"
|
4 |
|
|
|
|
|
5 |
COPY requirements.txt /tmp/requirements.txt
|
|
|
6 |
RUN pip install --no-cache-dir -r /tmp/requirements.txt
|
7 |
|
8 |
COPY ./app /app
|
|
|
2 |
|
3 |
LABEL maintainer="Sebastian Ramirez <tiangolo@gmail.com>"
|
4 |
|
5 |
+
RUN pip install --upgrade pip setuptools
|
6 |
+
|
7 |
COPY requirements.txt /tmp/requirements.txt
|
8 |
+
|
9 |
RUN pip install --no-cache-dir -r /tmp/requirements.txt
|
10 |
|
11 |
COPY ./app /app
|