Compare commits

..

No commits in common. "162ab3a0986f05c56e1fa03defff6153bb2b7ea7" and "2e69b2e4cf9799645f63ec9890450f074f28c3d4" 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"]