FROM gcc:latest

WORKDIR /app
COPY . .

RUN g++ -std=c++17 src/rudra512.cpp tools/cli.cpp -o rudra

CMD ["./rudra", "hello"]
