Files
test-pipeline/Dockerfile
T
2026-06-10 08:21:32 +00:00

5 lines
85 B
Docker

FROM node:20-alpine
WORKDIR /app
RUN echo "test" > index.js
CMD ["node", "index.js"]