-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(docker): 🔥 Remove duplicate configuration for the dev container
- Loading branch information
Showing
1 changed file
with
1 addition
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1 @@ | ||
FROM letssteam/makecode-toolchain:latest | ||
|
||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | ||
cu \ | ||
curl \ | ||
make \ | ||
software-properties-common \ | ||
tar \ | ||
udev \ | ||
usbutils && \ | ||
apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/* | ||
|
||
RUN adduser vscode dialout && \ | ||
adduser vscode plugdev | ||
|
||
USER vscode | ||
RUN pyocd pack install STM32WB55RGVx && \ | ||
pyocd pack install STM32L475VGTx | ||
FROM letssteam/makecode-toolchain:latest |