Add Containerfile
Some checks failed
build-image / build (push) Failing after 1m23s

This commit is contained in:
rangelovk 2026-07-08 21:41:02 +00:00
parent cce6f3cd6b
commit c49cec3efd

4
Containerfile Normal file
View file

@ -0,0 +1,4 @@
FROM node:22-bookworm
WORKDIR /app
RUN echo "console.log('CI works')" > index.js
CMD ["node", "index.js"]