Upload Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
RUN useradd -m -u 1000 user
|
| 2 |
USER user
|
| 3 |
|
| 4 |
-
# Get the image of python
|
| 5 |
-
FROM python:3.9
|
| 6 |
|
| 7 |
# Set the current directory as working dir
|
| 8 |
WORKDIR /code
|
|
|
|
| 1 |
+
# Get the image of python
|
| 2 |
+
FROM python:3.9
|
| 3 |
+
|
| 4 |
RUN useradd -m -u 1000 user
|
| 5 |
USER user
|
| 6 |
|
|
|
|
|
|
|
| 7 |
|
| 8 |
# Set the current directory as working dir
|
| 9 |
WORKDIR /code
|