blob: 9d168249c4bce7ae0cd4871fd40120e9bfe0ecf9 (
plain) (
blame)
1
2
3
4
5
6
|
FROM debian:buster-slim
RUN apt update && apt upgrade -y
RUN apt install wget build-essential -y
COPY ./*.cpp ./*.hpp ./makefile /dummy/
WORKDIR /dummy
RUN make exe CXX=g++ run
|