Spaces:
Sleeping
Sleeping
Commit
·
a5a0ddd
1
Parent(s):
d774d12
Try to run it with packages.txt
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
FROM python:3.11
|
| 2 |
|
| 3 |
RUN apt-get update
|
| 4 |
-
RUN apt-get --yes install
|
| 5 |
|
| 6 |
# Set up a new user named "user" with user ID 1000
|
| 7 |
RUN useradd -m -u 1000 user
|
|
|
|
| 1 |
FROM python:3.11
|
| 2 |
|
| 3 |
RUN apt-get update
|
| 4 |
+
RUN xargs -a packages.txt apt-get --yes install
|
| 5 |
|
| 6 |
# Set up a new user named "user" with user ID 1000
|
| 7 |
RUN useradd -m -u 1000 user
|