Changed from ubuntu:25.04 to debian:sid-slim

This commit is contained in:
Rasmus Rasmussen 2025-03-27 17:28:49 +01:00
parent 2e69b2e4cf
commit aa141a8f22

View File

@ -1,11 +1,17 @@
FROM gcc:latest
RUN g++ src/*.cpp -o Bowling
FROM gcc:latest AS build
WORKDIR /app
COPY include/* /app/include/
COPY src/* /app/src/
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"]