Skip to content
Snippets Groups Projects

Update Dockerfile

+ 9
0
@@ -3,6 +3,15 @@ FROM gcc:latest
RUN apt-get update && apt-get install --yes gdb \
&& rm -rf /var/lib/apt/lists/*
# ===== Put things that shouldn't change often here START =====
# e.g.: Installing Rust
# RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
# # Put Rust binaries on path
# ENV PATH="/root/.cargo/bin:${PATH}"
# ===== Put things that shouldn't change often here END =======
COPY . /
WORKDIR /
RUN make
Loading