You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM debian |
|
WORKDIR / |
|
RUN apt update |
|
RUN apt -y install gcc |
|
RUN apt -y install git |
|
RUN apt -y install cmake |
|
RUN apt -y install valgrind |
|
RUN apt -y install rpm |
|
RUN mkdir /working-dir |
|
WORKDIR /working-dir
|
|
|