Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
-
WORKDIR /
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|
9 |
-
COPY main.py /app/
|
10 |
-
|
11 |
|
12 |
RUN useradd -m -u 1000 user
|
13 |
|
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
+
WORKDIR /app
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|
9 |
+
COPY main.py /app/
|
10 |
+
|
11 |
|
12 |
RUN useradd -m -u 1000 user
|
13 |
|