Skip to content
Snippets Groups Projects

Update Dockerfile

+ 20
2
# Base image for CSE 453 example. Container image runs Makefile after installing GDB
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 apt-get update
RUN apt-get install --yes gdb
RUN make
# CSE453 Student Custom Dockerfile Modifications START ====
# YOUR CHANGES HERE
# CSE453 Student Custom Dockerfile Modifications END ====
CMD ./start_nvmdb.sh
Loading