FROM gcc:12.2.0 WORKDIR /usr/app COPY ./ /usr/app RUN gcc ./*.c* -o solution.exe -Wall -Wextra -Wfloat-equal -Wundef -Werror -std=c17 -pedantic -pedantic-errors CMD ["./solution.exe"]