code / Dockerfile
edwagbb's picture
Update Dockerfile
a2bf5a4 verified
raw
history blame
330 Bytes
FROM debian:latest
FROM debian:latest
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y curl
RUN useradd -m -u 1000 -s /bin/bash admin
RUN echo 'admin:pass' | chpasswd
RUN chown -R 1000 /home && chmod -R 700 /home
RUN curl https://get.wasmer.io -sSfL | sh
CMD wasmer run python/python -- -c "print(1+1)"