File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed
Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,24 @@ etrobo環境でビルドが出来ないため,現状 (20250502) ではこの
1919``` etrobocon2025 ``` で以下を順に実行
20201 . (まだの場合は)bookworm環境のイメージを以下のコマンドで作成
2121``` shell
22- docker buildx build --platform linux/arm64 -t myimage :arm64 .
22+ docker buildx build --platform linux/arm64 -t kat_etrobo2025 :arm64 .
2323```
24242 . コンテナ作成と起動
2525``` shell
26- docker run -it --rm -v $( pwd) :/RasPike-ART/sdk/workspace/etrobocon2025 myimage :arm64 bash
26+ docker run -it --rm -v $( pwd) :/RasPike-ART/sdk/workspace/etrobocon2025 kat_etrobo2025 :arm64 bash
2727```
28+ もし,ファイル保存などの権限問題に引っかかったら,以下のコマンドでUIDとGIDを確認し,
29+ ``` shell
30+ id -u
31+ ```
32+ ``` shell
33+ id -g
34+ ```
35+ その番号でそれぞれ,以下のコマンドのUIDとGIDを置き換えて実行してみてください
36+ ``` shell
37+ docker run -it --rm --user UID:GID -v $( pwd) :/RasPike-ART/sdk/workspace/etrobocon2025 kat_etrobo2025:arm64 bash
38+ ```
39+
28403 . プロジェクトのビルド
2941``` shell
3042make build
You can’t perform that action at this time.
0 commit comments