alpine linux -- autossh(缺失)

alpine linux -- autossh (missing)

我需要能够:

-- RUN apk add --no-cache autossh

用于将我的项目从 ubuntu

迁移到 alpine linux

我在构建 Dockerfile 时遇到错误。有什么解决方法吗? 我无法摆脱 autossh 要求,因为我需要它来连接到我的 compose db。

ERROR: unsatisfiable constraints:
  autossh (missing):
    required by: world[autossh]
The command '/bin/sh -c apk add --no-cache autossh' returned a non-zero code: 1

请在 docker 文件中尝试 运行 apk 更新。希望有用

autosshcommunity 存储库中,只有 edge 分支,你可以check on pkgs.alpinelinux.org。 Alpine 默认只有 main 来自 /etc/apk/repositories 的稳定分支,所以要从另一个存储库和分支安装包,你必须在这里添加它,例如:

echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
apk update