【DOCKER】基于UBUNTU的开发镜像

1. ubuntu_base

bash 复制代码
########################################################################################################################
# docker build --file ubuntu_base --build-arg UIMG=ubuntu:22.04 --build-arg LOGIN=u22 --tag u22:base .
# docker build --file ubuntu_base --build-arg UIMG=ubuntu:20.04 --build-arg LOGIN=u20 --tag u20:base .
# docker build --file ubuntu_base --build-arg UIMG=ubuntu:18.04 --build-arg LOGIN=u18 --tag u18:base .
# 可选参数
# --no-cache=true --progress=plain
#
# 创建容器并使用默认的root用户登录
# docker run -it --rm --privileged=true --name u20_base u20:base
# 创建容器并使用指定用户登录
# docker run -it --rm --privileged=true --name u20_base --user=u20 --workdir=/home/u20 u20:base
########################################################################################################################
ARG UIMG=
FROM ${UIMG}

ARG LOGIN=
RUN apt-get -y update && apt-get install -y ca-certificates &&\
  cp /etc/apt/sources.list /etc/apt/sources.list.bak &&\
  sed -i "s@http://.*archive.ubuntu.com@https://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list &&\
  sed -i "s@http://.*security.ubuntu.com@https://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list &&\
  apt-get -y update && apt-get -y upgrade &&\
  apt-get install -y net-tools iproute2 iputils-ping &&\
  apt-get install -y wget axel curl &&\
  apt-get install -y zip unzip xz-utils rar unrar &&\
  apt-get install -y gawk sudo vim tree locales lsb-release &&\
  apt-get -y autoremove &&\
  echo 'root:root' | chpasswd root &&\
  useradd -m -s /bin/bash ${LOGIN} && adduser ${LOGIN} sudo && echo "${LOGIN}:${LOGIN}" | chpasswd

2. ubuntu_dev

bash 复制代码
########################################################################################################################
# docker build --file ubuntu_dev --build-arg UIMG=u22:base --tag u22:dev .
# docker build --file ubuntu_dev --build-arg UIMG=u20:base --tag u20:dev .
# docker build --file ubuntu_dev --build-arg UIMG=u18:base --tag u18:dev .
# 可选参数
# --no-cache=true --progress=plain
#
# 创建容器并使用默认的root用户登录
# docker run -it --rm --privileged=true u20:dev
#
# 创建容器并使用指定用户登录
# docker run -it --rm --privileged=true --user=u20 --workdir=/home/u20 u20:dev
#
# Windows
# docker run -id --privileged=true --user=u20 --workdir=/home/u20 --volume D:/dev:/home/u20/dev --name=u20_dev u20:dev
#
# Linux
# docker run -id --privileged=true --user=u20 --workdir=/home/u20 --volume ${HOME}/dev:/home/u20/dev --name=u20_dev u20:dev
########################################################################################################################
ARG UIMG=
FROM ${UIMG}

RUN apt-get -y update &&\
  /bin/bash -c echo -e "\n6\n70\n" | apt-get -y install cmake &&\
  apt-get install -y build-essential gdb git git-lfs autoconf automake libtool pkg-config &&\
  apt-get install -y nasm python3 python3-pip &&\
  echo '[global]' >/etc/pip.conf &&\
  echo 'index-url = https://pypi.tuna.tsinghua.edu.cn/simple' >> /etc/pip.conf &&\
  pip3 install -U pip &&\
  pip3 config --global set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple &&\
  pip3 config --global set install.trusted-host pypi.tuna.tsinghua.edu.cn &&\
  pip3 install -U pip &&\
  pip3 config --global set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple &&\
  pip3 config --global set install.trusted-host pypi.tuna.tsinghua.edu.cn &&\
  pip3 install meson ninja &&\
  apt-get -y autoremove
相关推荐
景天科技苑24 分钟前
【云原生开发】K8S多集群资源管理平台架构设计
云原生·容器·kubernetes·k8s·云原生开发·k8s管理系统
wclass-zhengge1 小时前
K8S篇(基本介绍)
云原生·容器·kubernetes
颜淡慕潇1 小时前
【K8S问题系列 |1 】Kubernetes 中 NodePort 类型的 Service 无法访问【已解决】
后端·云原生·容器·kubernetes·问题解决
wowocpp3 小时前
ubuntu 22.04 硬件配置 查看 显卡
linux·运维·ubuntu
山河君3 小时前
ubuntu使用DeepSpeech进行语音识别(包含交叉编译)
linux·ubuntu·语音识别
knighthood20013 小时前
解决:ros进行gazebo仿真,rviz没有显示传感器数据
c++·ubuntu·ros
川石课堂软件测试3 小时前
性能测试|docker容器下搭建JMeter+Grafana+Influxdb监控可视化平台
运维·javascript·深度学习·jmeter·docker·容器·grafana
昌sit!9 小时前
K8S node节点没有相应的pod镜像运行故障处理办法
云原生·容器·kubernetes
追风林10 小时前
mac 本地docker-mysql主从复制部署
mysql·macos·docker
A ?Charis12 小时前
Gitlab-runner running on Kubernetes - hostAliases
容器·kubernetes·gitlab