PodmanでError: error creating build container: short-name resolution enforced but cannot prompt without a TTYがでたとき

podmanを触る機会が増えてきた。
Dockerから移行する機会も増えてきた。

Dockerfileをほぼそのまま利用できるのがPodmanの良さですね。
今回は、docker build(podman build)を実行したときに下記のエラーがでたときの対応の書き溜め。

Error: error creating build container: short-name resolution enforced but cannot prompt without a TTY

これは、FROMの指定が短すぎるから。

使用したDockerfileは下記

node:16-bullseyeではなく、docker.ioからつなげて指定すればよい。

FROM node:16-bullseye

FROM docker.io/node:16-bullseye



じゃあね〜〜〜〜。