7 Star 32 Fork 21

小熊派开源社区/BearPi-Pico_H3863

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 911 Bytes
一键复制 编辑 原始数据 按行查看 历史
小熊梦工厂 提交于 2024-10-25 17:31 . 增加docker环境能力
# 基础镜像
FROM ubuntu:20.04
# 设置环境变量
ENV DEBIAN_FRONTEND=noninteractive
# 更新系统并安装必要的工具和依赖
RUN apt-get update && apt-get install -y \
sudo \
software-properties-common \
wget \
curl \
build-essential \
cmake \
python3 \
python3-pip \
python3-setuptools \
&& rm -rf /var/lib/apt/lists/*
# 设置 Python3 为默认 Python
RUN ln -s /usr/bin/python3 /usr/bin/python
# 安装 kconfiglib 和 pycparser
COPY requirements.txt /tmp/
RUN pip3 install -r /tmp/requirements.txt
# 配置 bash 作为默认 Shell
RUN echo "dash dash/sh boolean false" | debconf-set-selections && \
dpkg-reconfigure -p low dash
# 设置工作目录
WORKDIR /workspace
# 将用户的源码和其他文件(例如README)添加到容器
COPY . /workspace
# 执行完毕后的默认命令
CMD ["/bin/bash"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bearpi/bearpi-pico_h3863.git
[email protected]:bearpi/bearpi-pico_h3863.git
bearpi
bearpi-pico_h3863
BearPi-Pico_H3863
master

搜索帮助