@@ -8,70 +8,56 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
8
8
git \
9
9
curl \
10
10
fish \
11
+ docker.io \
12
+ sudo \
13
+ build-essential \
11
14
&& apt-get clean \
12
15
&& rm -rf /var/lib/apt/lists/*
13
16
14
- RUN mkdir -p /home/vscode/.local/share/CMakeTools \
15
- && chown -R vscode:vscode /home/ vscode/.local/share/CMakeTools
17
+ # Add user to docker group
18
+ RUN usermod -aG docker vscode
16
19
17
- RUN mkdir -p /home/vscode/.ssh \
20
+ # Create directories and set permissions
21
+ RUN mkdir -p /home/vscode/.local/share/CMakeTools \
22
+ && chown -R vscode:vscode /home/vscode/.local/share/CMakeTools \
23
+ && mkdir -p /home/vscode/.ssh \
18
24
&& chown vscode:vscode /home/vscode/.ssh \
19
25
&& chmod 700 /home/vscode/.ssh
20
26
21
- # Install arduino-cli
22
- RUN curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh
23
-
24
- # Set up arduino-cli config
25
- RUN arduino-cli config init
27
+ # Install Arduino CLI
28
+ RUN curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh \
29
+ && arduino-cli config init
26
30
27
- # Add arduino-cli to PATH
28
31
ENV PATH="/usr/local/bin:${PATH}"
29
-
30
- # Create workspace directory
31
32
WORKDIR /workspace
32
33
33
- # Copy arduino-cli configuration (customise to your actual path)
34
+ # Copy Arduino config and update script
34
35
COPY arduino-cli.yaml /root/.arduino15/arduino-cli.yaml
35
-
36
- # Install build essentials
37
- RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/*
38
-
39
- # (Optional) Install Arduino cores for ESP8266 and ESP32 if needed
40
- RUN arduino-cli core install esp8266:esp8266 esp32:esp32
41
-
42
- # Install only required dependencies for DallasTemperature library and others
43
- RUN arduino-cli lib install \
44
- "OneWire" \
45
- "ArduinoUnit" # For testing
46
-
47
- # Verify library installation
48
- RUN arduino-cli lib list
49
-
50
- # Copy update script
51
36
COPY update-libraries.sh /usr/local/bin/
52
37
RUN chmod +x /usr/local/bin/update-libraries.sh
53
38
54
- # Add aliases for build operations (for Bash)
55
- RUN echo 'alias arduino-build="./build.sh build"' >> /home/vscode/.bashrc && \
56
- echo 'alias arduino-test="./build.sh test"' >> /home/vscode/.bashrc && \
57
- echo 'alias arduino-build-test="./build.sh all"' >> /home/vscode/.bashrc
39
+ # Install Arduino cores and libraries
40
+ RUN arduino-cli core install esp8266:esp8266 esp32:esp32 \
41
+ && arduino-cli lib install "OneWire" "ArduinoUnit" \
42
+ && arduino-cli lib list
58
43
59
- # Add a welcome message to .bashrc
60
- RUN echo '\n # Welcome to the dev container! Here are some useful aliases: ' >> /home/vscode/.bashrc && \
61
- echo 'echo " - arduino-build: Build the project"' >> /home/vscode/.bashrc && \
62
- echo 'echo " - arduino-test: Run tests for the project"' >> /home/vscode/.bashrc && \
63
- echo 'echo " - arduino-build-test: Build and test the project" ' >> /home/vscode/.bashrc
44
+ # Configure shells
45
+ RUN echo 'alias arduino-build="./build.sh build" \n alias arduino-test="./build.sh test" \n alias arduino-build-test="./build.sh all" ' >> /home/vscode/.bashrc \
46
+ && echo '\n # Welcome to the dev container! Here are some useful aliases: \n echo " - arduino-build: Build the project"\n echo " - arduino-test: Run tests for the project" \n echo " - arduino-build-test: Build and test the project" ' >> /home/vscode/.bashrc \
47
+ && mkdir -p /home/vscode/.config/fish \
48
+ && echo 'set -gx PATH /usr/local/bin $PATH \n # Welcome to the Fish shell inside the dev container! ' >> /home/vscode/.config/fish/config.fish
64
49
65
- # (Optional) Add fish-specific configuration if desired
66
- # For example, you might add an alias file or welcome message for fish:
67
- RUN mkdir -p /home/vscode/.config/fish && \
68
- echo 'set -gx PATH /usr/local/bin $PATH' >> /home/vscode/.config/fish/config.fish && \
69
- echo '# Welcome to the Fish shell inside the dev container!' >> /home/vscode/.config/fish/config.fish
70
-
71
- # Generate SSH keys and set proper ownership and permissions
50
+ # Generate SSH keys
72
51
RUN if [ ! -f /home/vscode/.ssh/id_rsa ]; then \
73
52
ssh-keygen -t rsa -b 4096 -N "" -C "devcontainer@local" -f /home/vscode/.ssh/id_rsa && \
74
53
chmod 600 /home/vscode/.ssh/id_rsa && \
75
54
chmod 644 /home/vscode/.ssh/id_rsa.pub && \
76
55
chown vscode:vscode /home/vscode/.ssh/id_rsa /home/vscode/.ssh/id_rsa.pub ; \
77
56
fi
57
+
58
+ # Docker-in-Docker setup
59
+ RUN echo '#!/bin/sh\n chmod 666 /var/run/docker.sock\n exec "$@"' > /usr/local/bin/docker-entrypoint.sh \
60
+ && chmod +x /usr/local/bin/docker-entrypoint.sh
61
+
62
+ ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh" ]
63
+ CMD ["sleep" , "infinity" ]
0 commit comments