Skip to content

Commit

Permalink
Create debian_fastboot
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierrestro authored Oct 11, 2024
1 parent 627ae02 commit 4e59ed0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions dockerfiles/debian_fastboot
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM --platform=i386 i386/debian:buster
ARG DEBIAN_FRONTEND=noninteractive
RUN useradd -m user && echo "user:password" | chpasswd
COPY --chown=user:user ./examples /home/user/examples
RUN chmod -R +x /home/user/examples/lua
# We set WORKDIR, as this gets extracted by Webvm to be used as the cwd. This is optional.
WORKDIR /home/user/
# We set env, as this gets extracted by Webvm. This is optional.
ENV HOME="/home/user" TERM="xterm" USER="user" SHELL="/bin/bash" EDITOR="vim" LANG="en_US.UTF-8" LC_ALL="C"
RUN echo 'root:password' | chpasswd
CMD [ "/bin/bash" ]

0 comments on commit 4e59ed0

Please sign in to comment.