6 lines
151 B
Docker
6 lines
151 B
Docker
|
FROM gcc:8.4.0
|
||
|
|
||
|
WORKDIR /opt
|
||
|
COPY src/** /opt
|
||
|
RUN gcc -std=c11 -o connectfour connectfour.c file_utils.c gamelogic.c arghandler.c
|
||
|
CMD ["./connectfour"]
|