Skip to content

Commit

Permalink
feat: add openocd to Vanilla Zephyr Dev dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkoSagadin committed Jul 12, 2024
1 parent c6977f2 commit 4e4087f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [Unreleased]

### Added

- OpenOCD into vanilla Zephyr Dev Dockerfile.

## [1.0.1] - 2024-07-09

### Fixed
Expand All @@ -20,4 +24,5 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

[unreleased]: https://github.com/IRNAS/irnas-docker-software/compare/v1.0.1...HEAD
[1.0.1]: https://github.com/IRNAS/irnas-docker-software/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/IRNAS/irnas-docker-software/compare/b08044e0137bcbbf5f060545de6b2d2a9f1ee8d8...v1.0.0
[1.0.0]:
https://github.com/IRNAS/irnas-docker-software/compare/b08044e0137bcbbf5f060545de6b2d2a9f1ee8d8...v1.0.0
7 changes: 7 additions & 0 deletions vanilla-zephyr/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ FROM ${BASE_IMAGE}
ARG UID=1000
ARG GID=1000

RUN apt-get -y update && \
apt-get install --no-install-recommends -y \
openocd && \
apt-get clean -y && \
apt-get autoremove --purge -y && \
rm -rf /var/lib/apt/lists/*

# Create 'user' account
RUN useradd -l -m -s /bin/bash -u $UID user

Expand Down

0 comments on commit 4e4087f

Please sign in to comment.