edwagbb commited on
Commit
39b9b6f
·
verified ·
1 Parent(s): a2bf5a4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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)"