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
9 changes: 5 additions & 4 deletions docker/.gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@ RUN apt-get update -qq \
python3-pip \
tar \
unzip \
wget \
wget \
# aarch64 packages
libffi-dev \
libssl-dev \
python3-dev \
python3-dev \
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*;

# Needs to be installed as root
RUN pip3 install adafruit-nrfutil
RUN pip3 install -Iv cryptography==3.3

COPY docker/build.sh /opt/
# Lets get each in a separate docker layer for better downloads
Expand All @@ -34,6 +35,6 @@ RUN bash -c "source /opt/build.sh; GetNrfSdk;"
RUN bash -c "source /opt/build.sh; GetMcuBoot;"

# Link the default checkout workspace in to the default $SOURCES_DIR
RUN ln -s /workspace/Pinetime /sources
RUN ln -s /workspace/InfiniTime /sources

USER gitpod
USER gitpod