Advertisement
epl70

Untitled

Sep 20th, 2022
1,118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.39 KB | Source Code | 0 0
  1. FROM debian:bullseye
  2. RUN apt-get update && apt-get install -y \
  3. git \
  4. build-essential \
  5. cmake \
  6. libhidapi-libusb0 \
  7. python3 \
  8. python3-pip \
  9. vim \
  10. sudo \
  11. && rm -rf /var/lib/apt/lists/*
  12. RUN useradd -ms /bin/bash epl
  13. RUN echo "epl:epl" | chpasswd
  14. RUN usermod -aG sudo epl
  15. RUN ln /usr/bin/python3 /usr/bin/python
  16. RUN ln /usr/bin/pip3 /usr/bin/pip
  17. USER epl
  18. WORKDIR /var/micropython-src
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement