Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# To Do: Check if it is worth to use espressif/idf as base image (image size will be much bigger)
FROM ubuntu:22.04
FROM ubuntu:latest

# switch to root, let the entrypoint drop back to host user
USER root
Expand Down Expand Up @@ -70,7 +70,7 @@ RUN echo LIBBUILDER_CHECKOUT_REF=$LIBBUILDER_CHECKOUT_REF LIBBUILDER_CLONE_BRANC
git checkout $LIBBUILDER_CHECKOUT_REF && \
git submodule update --init --recursive; \
fi && \
pip3 install --upgrade -r $LIBBUILDER_PATH/tools/config_editor/requirements.txt
pip3 install --break-system-packages --upgrade -r $LIBBUILDER_PATH/tools/config_editor/requirements.txt

COPY entrypoint.sh $LIBBUILDER_PATH/entrypoint.sh

Expand Down
Loading