Ziad Meligy commited on
Commit
ac4fea9
·
1 Parent(s): 84fa6ca

Pushing deployment to space

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -10
Dockerfile CHANGED
@@ -1,18 +1,13 @@
1
  FROM python:3.8.8-slim
2
 
3
- # Create non-root user
4
  RUN useradd -m -u 1000 user
5
  USER user
 
6
 
7
  WORKDIR /app
8
 
9
- # Install requirements
10
- COPY --chown=user requirements.txt .
11
- RUN pip install --no-cache-dir --upgrade pip \
12
- && pip install --no-cache-dir -r requirements.txt
13
 
14
- # Copy app source code
15
- COPY --chown=user . .
16
-
17
- # Use Python to run uvicorn so we avoid $PATH issues
18
- CMD ["python", "-m", "uvicorn", "src.services.app:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
  FROM python:3.8.8-slim
2
 
 
3
  RUN useradd -m -u 1000 user
4
  USER user
5
+ ENV PATH="/home/user/.local/bin:$PATH"
6
 
7
  WORKDIR /app
8
 
9
+ COPY --chown=user ./requirements.txt requirements.txt
10
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
 
 
11
 
12
+ COPY --chown=user . /app
13
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]