STEINGEN/gcc.dockerfile
2024-11-25 12:10:39 +01:00

15 lines
314 B
Docker

# Use a base image with Debian
FROM debian:latest
# Install gcc, gdb, make, and other necessary tools
RUN apt-get update && apt-get install -y \
gcc \
gdb \
make \
doxygen \
valgrind \
&& apt-get clean
RUN ulimit -s unlimited
# Set working directory within the container
WORKDIR /steingen