Search found 1 match

by ga666666
2025-08-30 5:55
Forum: Luckfox Pico-RV1103/RV1106
Topic: 按教程docker构建一直失败
Replies: 3
Views: 1621

Re: 按教程docker构建一直失败

Macbook M1Pro core , docker deploy ubuntu 22.04 version, amd64 platform, the same problem



# 使用 x86_64 架构的 Ubuntu 22.04 作为基础镜像
FROM --platform=linux/amd64 ubuntu:22.04

# 设置非交互式安装以避免提示
ENV DEBIAN_FRONTEND=noninteractive

# 更新包索引并安装必要的软件包
RUN apt-get update && apt-get install -y \
git \
ssh ...