Testing roll combination validation

This commit is contained in:
2025-03-26 12:44:11 +01:00
parent 8fdd4c18fd
commit 05ba979f58
4 changed files with 22 additions and 6 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
FROM gcc:latest
RUN g++ src/*.cpp -o Bowling
WORKDIR /app
COPY rolls.txt /app/
COPY include/* /app/include/
COPY src/* /app/src/
RUN g++ src/*.cpp -o Bowling
#RUN g++ src/*.cpp -o Bowling
CMD ["./Bowling", "rolls.txt"]