diff --git a/bsp_stm32_freertos/Dockerfile b/bsp_stm32_freertos/Dockerfile index fa52c60..c92cd82 100644 --- a/bsp_stm32_freertos/Dockerfile +++ b/bsp_stm32_freertos/Dockerfile @@ -4,7 +4,7 @@ FROM ubuntu:latest # Specify the cross compiler version # See: https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack -ENV XPM_ARM_XCOMPILER_VERSION = "10.2.1-1.1.2" +ENV XPM_ARM_XCOMPILER_VERSION="10.2.1-1.1.2" RUN apt-get update -y && apt-get upgrade -y RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata diff --git a/docker-compose.yml b/docker-compose.yml index a0312d1..ce50fb9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,3 +10,8 @@ services: build: context: . dockerfile: bsp_hosted/Dockerfile + + build-freertos: + build: + context: . + dockerfile: bsp_stm32_freertos/Dockerfile