我在Dockerfile
里有这些行
RUN apt-get update && apt-get install -y --no-install-recommends
<list of packages>
我可以通过docker build -f Dockerfile ...
在mac上建立一个码头形象。
考虑到mac没有apt-get
,它是如何工作的呢?特别是,如果我在macOS中运行一个linux容器,并且有一个依赖于安装了apt的包的python脚本,那么这种依赖在Mac环境中是如何解决的呢?
https://stackoverflow.com/questions/63959789
复制相似问题