Compare commits

..

No commits in common. "1e51718b04c217fff5c3f1a0358c9a76ccac8f41" and "531732c524ac1bf65160c200e06c81fe3a3cdded" have entirely different histories.

View File

@ -1,17 +1,11 @@
FROM gcc:latest AS build
WORKDIR /app
COPY include/* /app/include/
COPY src/* /app/src/
FROM gcc:latest
RUN g++ src/*.cpp -o Bowling
FROM debian:sid-slim
WORKDIR /app
COPY --from=build /app/Bowling Bowling
COPY rolls.txt /app/
#RUN g++ src/*.cpp -o Bowling
CMD ["./Bowling", "rolls.txt"]