STEINGEN/gcc.dockerfile
Slobodan Jelic c670e7fa16 build: 🔨 Devcontainer updated.
Updated devcontainer with texlive options. Improve build. Aux files cleaned after build.
2025-10-10 10:30:38 +00:00

16 lines
340 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 \
docker.io
RUN apt-get clean
RUN ulimit -s unlimited
# Set working directory within the container
WORKDIR /steingen