mateoluksenberg commited on
Commit
cea6e1b
verified
1 Parent(s): 9d1b3d4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +20 -7
Dockerfile CHANGED
@@ -1,17 +1,30 @@
1
- # Use the official Python 3.9 image
2
  FROM python:3.9
3
 
4
- # Set the working directory inside the container
5
  WORKDIR /code
6
 
7
- # Copy requirements.txt to the working directory
8
  COPY requirements.txt .
9
 
10
- # Install dependencies including uvicorn
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
- # Copy the rest of the application code into the container
14
- COPY . .
15
 
16
- # Specify the command to run your application using uvicorn
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
+ # Usa la imagen oficial de Python 3.9
2
  FROM python:3.9
3
 
4
+ # Establece el directorio de trabajo dentro del contenedor
5
  WORKDIR /code
6
 
7
+ # Copia requirements.txt al directorio de trabajo
8
  COPY requirements.txt .
9
 
10
+ # Instala las dependencias, incluyendo uvicorn
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
+ # Crea un nuevo usuario llamado "user" para mayor seguridad
14
+ RUN useradd user
15
 
16
+ # Cambia al usuario "user"
17
+ USER user
18
+
19
+ # Establece el directorio de inicio para el usuario
20
+ ENV HOME=/home/user \
21
+ PATH=/home/user/.local/bin:$PATH
22
+
23
+ # Establece el directorio de trabajo en el directorio de inicio del usuario
24
+ WORKDIR $HOME/app
25
+
26
+ # Copia el resto del c贸digo de la aplicaci贸n al contenedor
27
+ COPY --chown=user . $HOME/app
28
+
29
+ # Comando para iniciar la aplicaci贸n FASTAPI en el puerto 7860
30
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]