Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,5 +1,7 @@
|
|
| 1 |
FROM python:3.12-slim
|
| 2 |
|
|
|
|
|
|
|
| 3 |
RUN useradd -m -u 1000 user
|
| 4 |
USER user
|
| 5 |
ENV HOME=/home/user \
|
|
@@ -9,8 +11,6 @@ WORKDIR $HOME/app
|
|
| 9 |
|
| 10 |
COPY --chown=user requirements.txt .
|
| 11 |
|
| 12 |
-
RUN apt-get update && apt-get install -y libgomp1
|
| 13 |
-
|
| 14 |
RUN pip install -r requirements.txt
|
| 15 |
|
| 16 |
COPY --chown=user Frez.jpg .
|
|
|
|
| 1 |
FROM python:3.12-slim
|
| 2 |
|
| 3 |
+
RUN apt-get update && apt-get install -y libgomp1
|
| 4 |
+
|
| 5 |
RUN useradd -m -u 1000 user
|
| 6 |
USER user
|
| 7 |
ENV HOME=/home/user \
|
|
|
|
| 11 |
|
| 12 |
COPY --chown=user requirements.txt .
|
| 13 |
|
|
|
|
|
|
|
| 14 |
RUN pip install -r requirements.txt
|
| 15 |
|
| 16 |
COPY --chown=user Frez.jpg .
|