Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- FROM debian:bullseye
- RUN apt-get update && apt-get install -y \
- git \
- build-essential \
- cmake \
- libhidapi-libusb0 \
- python3 \
- python3-pip \
- vim \
- sudo \
- && rm -rf /var/lib/apt/lists/*
- RUN useradd -ms /bin/bash epl
- RUN echo "epl:epl" | chpasswd
- RUN usermod -aG sudo epl
- RUN ln /usr/bin/python3 /usr/bin/python
- RUN ln /usr/bin/pip3 /usr/bin/pip
- USER epl
- WORKDIR /var/micropython-src
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement