Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -5,6 +5,5 @@ RUN apt-get update && apt-get install -y curl
|
|
| 5 |
RUN useradd -m -u 1000 -s /bin/bash admin
|
| 6 |
RUN echo 'admin:pass' | chpasswd
|
| 7 |
RUN chown -R 1000 /home && chmod -R 700 /home
|
| 8 |
-
RUN curl https://get.wasmer.io -sSfL | sh
|
| 9 |
|
| 10 |
-
CMD wasmer run python/python -- -c "print(1+1)"
|
|
|
|
| 5 |
RUN useradd -m -u 1000 -s /bin/bash admin
|
| 6 |
RUN echo 'admin:pass' | chpasswd
|
| 7 |
RUN chown -R 1000 /home && chmod -R 700 /home
|
|
|
|
| 8 |
|
| 9 |
+
CMD curl https://get.wasmer.io -sSfL | sh && wasmer run python/python -- -c "print(1+1)"
|