LOUIS SANNA commited on
Commit
90c89dd
·
1 Parent(s): 07b7918

Add application file

Browse files
Files changed (3) hide show
  1. Dockerfile +20 -0
  2. app.py +8 -0
  3. requirements.txt +2 -0
Dockerfile ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use Python 3.9 as the base image
2
+ FROM python:3.9
3
+ # Create a new user named 'user' with user ID 1000 and create their home directory
4
+ RUN useradd -m -u 1000 user
5
+ # Switch to the newly created user
6
+ USER user
7
+ # Add the user's local bin directory to the PATH
8
+ ENV PATH="/home/user/.local/bin:$PATH"
9
+ # Set the working directory in the container to /app
10
+ WORKDIR /app
11
+ # Copy the requirements.txt file from the host to the container
12
+ # The --chown=user ensures the copied file is owned by our 'user'
13
+ COPY --chown=user ./requirements.txt requirements.txt
14
+ # Install the Python dependencies listed in requirements.txt
15
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
16
+ # Copy the rest of the application code from the host to the container
17
+ # Again, ensure the copied files are owned by 'user'
18
+ COPY --chown=user . /app
19
+ # Specify the command to run when the container starts
20
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI
2
+
3
+ app = FastAPI()
4
+
5
+
6
+ @app.get("/")
7
+ def greet_json():
8
+ return {"Hello": "World!"}
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ fastapi
2
+ uvicorn[standard]