genuinetools / img

Standalone, daemon-less, unprivileged Dockerfile and OCI compatible container image builder.
https://blog.jessfraz.com/post/building-container-images-securely-on-kubernetes/
MIT License
3.88k stars 229 forks source link

05.11 fails silently building no errors #365

Open jam49 opened 10 months ago

jam49 commented 10 months ago
:/tmp$ img build -d -t hello .
DEBU[0000] checking runc                                 disableEmbeddedRunc=false state=/var/jenkins_home/.local/share/img
DEBU[0000] runc found                                    commit=56aca5aa50d07548d5db8fd33e9dc562f70f3208 spec=1.0.2 version=1.0.0-rc10+dev
:/tmp$ 

no errors, nothing. debian docker image.

Dockerfile:

FROM node:18-alpine
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "src/index.js"]
EXPOSE 3000