Skip to content

Commit 3dcb80c

Browse files
committed
Use Ubuntu 24.04 for devcontainer
- Change the container user to ubuntu:ubuntu since that one already exists anyway. There were also permisison issues stemming from not using ubuntu since the external user would likely have UID 1000 (at least on single user systems). That would lead to external files mapped into the container being owned by ubuntu, not infinitime, which has UID 1001 - Split installation into three sections to increase layer granularity for caching - Remove node install script after usage to reduce container size
1 parent eb8e6da commit 3dcb80c

File tree

2 files changed

+28
-15
lines changed

2 files changed

+28
-15
lines changed

.devcontainer/Dockerfile

+26-13
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:24.04
22

3-
# Install dependencies
3+
# Install apt dependencies
44
ARG DEBIAN_FRONTEND=noninteractive
55
ARG NODE_MAJOR=20
6-
RUN apt-get update -qq && \
7-
apt-get install -y \
6+
RUN apt-get update -qq \
7+
&& apt-get install -y \
88
curl \
99
cmake \
1010
ccache \
@@ -16,26 +16,38 @@ RUN apt-get update -qq && \
1616
sudo \
1717
python3-pip \
1818
python3-venv \
19-
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/* \
20-
&& curl -sL https://deb.nodesource.com/setup_${NODE_MAJOR}.x -o nodesource_setup.sh \
19+
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*
20+
21+
# Install nodejs based dependencies
22+
RUN curl -sL https://deb.nodesource.com/setup_${NODE_MAJOR}.x -o nodesource_setup.sh \
2123
&& bash nodesource_setup.sh \
24+
&& apt-get update -qq \
2225
&& apt-get install -y nodejs \
23-
&& npm install -g lv_font_conv@1.5.2 \
24-
&& pip install wheel Pillow
26+
&& npm install -g \
27+
lv_font_conv@1.5.2 \
28+
&& rm nodesource_setup.sh \
29+
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*
30+
31+
# Install Python dependencies
32+
RUN pip install --break-system-packages \
33+
wheel \
34+
Pillow \
35+
&& pip cache purge
2536

26-
# Add the infinitime user with sudo password "it" for developing in devcontainer
27-
RUN adduser infinitime && echo "infinitime:it" | chpasswd && usermod -aG sudo infinitime
37+
# The user ubuntu already exists set its password to ubuntu and add to sudo group for developing in devcontainer
38+
RUN usermod -aG sudo ubuntu \
39+
&& echo "ubuntu:ubuntu" | chpasswd
2840

2941
# Persist bash history across container rebuilds
3042
# Reference: https://code.visualstudio.com/remote/advancedcontainers/persist-bash-history
31-
ARG USERNAME=infinitime
43+
ARG USERNAME=ubuntu
3244
RUN SNIPPET="export PROMPT_COMMAND='history -a' && export HISTFILE=/commandhistory/.bash_history" \
3345
&& mkdir /commandhistory \
3446
&& touch /commandhistory/.bash_history \
3547
&& chown -R $USERNAME /commandhistory \
3648
&& echo "$SNIPPET" >> "/home/$USERNAME/.bashrc"
3749

38-
USER infinitime
50+
USER ubuntu
3951

4052
# Section for interactive compilation during docker run
4153

@@ -49,4 +61,5 @@ ENV BUILD_ARGS=""
4961
# Build directory
5062
ENV BUILD_DIRECTORY="build"
5163

52-
CMD ["bash", "-c", "cmake -S . -B ${BUILD_DIRECTORY} -G Ninja -DInfiniTime_DIR=${INFITIME_DIR} ${GENERATE_ARGS} && cmake --build ${BUILD_DIRECTORY} ${BUILD_ARGS}"]
64+
CMD ["bash", "-c", "cmake -S . -B ${BUILD_DIRECTORY} -G Ninja -DInfiniTime_DIR=${INFITIME_DIR} ${GENERATE_ARGS} \
65+
&& cmake --build ${BUILD_DIRECTORY} ${BUILD_ARGS}"]

.devcontainer/devcontainer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@
2727
//,"source=/home/example/git/InfiniTime,target=/workspaces/InfiniTime,type=bind,consistency=cached"
2828
],
2929

30-
// Sudo password "it"
31-
"remoteUser": "infinitime"
30+
// Sudo password "ubuntu"
31+
"remoteUser": "ubuntu"
3232
}

0 commit comments

Comments
 (0)