8 lines
73 B
Docker
8 lines
73 B
Docker
FROM gcc:latest
|
|
|
|
WORKDIR /app
|
|
|
|
COPY bin/Bowling /app/
|
|
|
|
CMD ["./Bowling"]
|