Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -9,4 +9,6 @@ USER 1000
|
|
9 |
RUN cd /home/admin && curl https://get.wasmer.io -sSfL | sh
|
10 |
RUN /home/admin/.wasmer/bin/wasmer run python/python -- -c "print(1+1)"
|
11 |
RUN /home/admin/.wasmer/bin/wasmer run php/php -- -r "echo 1;"
|
12 |
-
|
|
|
|
|
|
9 |
RUN cd /home/admin && curl https://get.wasmer.io -sSfL | sh
|
10 |
RUN /home/admin/.wasmer/bin/wasmer run python/python -- -c "print(1+1)"
|
11 |
RUN /home/admin/.wasmer/bin/wasmer run php/php -- -r "echo 1;"
|
12 |
+
|
13 |
+
RUN useradd newuser && passwd -d newuser
|
14 |
+
CMD su - newuser -c whoami
|