Skip to content

Instantly share code, notes, and snippets.

View ffenix113's full-sized avatar
🇺🇦

Yevhen Sylenko ffenix113

🇺🇦
View GitHub Profile
@Balth-D
Balth-D / Dockerfile
Last active March 10, 2025 11:24
nRF Connect SDK devcontainer for Visual Studio Code
# Derive from Nordic's image, SDK version 2.5
FROM nordicplayground/nrfconnect-sdk:v2.5-branch
# Update the distro
RUN apt-get -y update
# Install git and GDB
RUN apt-get -y install git gdb-multiarch
# Create the workspace folder
RUN mkdir /workdir/workspace