mirror of https://github.com/daviddgtnt/calc
8 lines
124 B
Docker
8 lines
124 B
Docker
|
FROM debian:11
|
||
|
WORKDIR /calc
|
||
|
RUN apt update && apt install g++ make
|
||
|
COPY main.cpp .
|
||
|
COPY Makefile .
|
||
|
RUN make
|
||
|
CMD ["./calc"]
|