chord/Dockerfile
2025-03-15 20:38:49 -04:00

9 lines
85 B
Docker

FROM golang:1.24
WORKDIR /app
COPY . .
RUN chmod +x test.bash
CMD ["./test.bash"]