FROM golang:1.24

WORKDIR /app

COPY . .
RUN chmod +x test.bash

CMD ["./test.bash"]