1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-13 23:22:49 +02:00

5 lines
76 B
Docker

FROM gcc:11.2.0
COPY ./ ./
RUN gcc *.c --output=solution
CMD ["./solution"]