Spaces:
Sleeping
Sleeping
Commit
·
26e0a8b
1
Parent(s):
a10a1a0
remove Dockerfile
Browse files- Dockerfile +2 -7
Dockerfile
CHANGED
@@ -5,10 +5,8 @@ RUN useradd -m -u 1000 user
|
|
5 |
USER user
|
6 |
# Add the user's local bin directory to the PATH
|
7 |
ENV PATH="/home/user/.local/bin:$PATH"
|
8 |
-
|
9 |
# Pass the secret variable to the application
|
10 |
RUN --mount=type=secret,id=HF_TOKEN,mode=0444,required=true
|
11 |
-
|
12 |
# Set the working directory in the container to /app
|
13 |
WORKDIR /app
|
14 |
# Copy the requirements.txt file from the host to the container
|
@@ -18,13 +16,10 @@ COPY --chown=user ./requirements.txt requirements.txt
|
|
18 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
19 |
# Copy the rest of the application code from the host to the container
|
20 |
# Again, ensure the copied files are owned by 'user'
|
21 |
-
|
22 |
-
COPY --chown=user ./app /app
|
23 |
-
|
24 |
-
|
25 |
|
26 |
# Add a debug command to check file location (remove this once verified)
|
27 |
RUN ls -l /app
|
28 |
|
29 |
# Specify the command to run when the container starts
|
30 |
-
CMD ["uvicorn", "
|
|
|
5 |
USER user
|
6 |
# Add the user's local bin directory to the PATH
|
7 |
ENV PATH="/home/user/.local/bin:$PATH"
|
|
|
8 |
# Pass the secret variable to the application
|
9 |
RUN --mount=type=secret,id=HF_TOKEN,mode=0444,required=true
|
|
|
10 |
# Set the working directory in the container to /app
|
11 |
WORKDIR /app
|
12 |
# Copy the requirements.txt file from the host to the container
|
|
|
16 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
17 |
# Copy the rest of the application code from the host to the container
|
18 |
# Again, ensure the copied files are owned by 'user'
|
19 |
+
COPY --chown=user . /app
|
|
|
|
|
|
|
20 |
|
21 |
# Add a debug command to check file location (remove this once verified)
|
22 |
RUN ls -l /app
|
23 |
|
24 |
# Specify the command to run when the container starts
|
25 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|