feat: change parent (base) image to ubuntu

Aligns with Zephyr and avoids Debian compatibility issues (cmake 3.15, libcurl4, python 3.8).

PR: zmkfirmware/zmk-docker#80
This commit is contained in:
innovaker 2021-06-15 19:25:13 +01:00
parent af6c5091aa
commit f62f86258a
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM debian:stable-20210511-slim AS common
FROM ubuntu:focal-20210416 AS common
CMD ["/bin/bash"]

View File

@ -27,7 +27,7 @@ Lightweight Docker images for [ZMK][zmk].
For _building_ [ZMK][zmk] firmware with CI.
- FROM: **[debian][debian]:stable-slim**
- FROM: **[ubuntu][ubuntu]**
- Includes:
- essential [Zephyr][zephyr] dependencies (`apt-get`)
- non-build dependencies are _not_ included. e.g. `pip3`, UI packages, etc.
@ -44,6 +44,6 @@ For _developing_ [ZMK][zmk] (firmware and documentation).
- build and test [Zephyr][zephyr] Python requirements
- other useful development packages
[debian]: https://hub.docker.com/_/debian "Debian"
[ubuntu]: https://hub.docker.com/_/ubuntu "Ubuntu"
[zephyr]: https://github.com/zephyrproject-rtos/zephyr "Zephyr"
[zmk]: https://github.com/zmkfirmware/zmk "ZMK"