Commit 475a24c5 authored by Adéla Štěpková's avatar Adéla Štěpková
Browse files

add dockerfile

parent decc64ca
Loading
Loading
Loading
Loading

Dockerfile

0 → 100644
+24 −0
Original line number Diff line number Diff line
# Start from a clean OS — pick what your tool targets
FROM ubuntu:24.04

# Prevent interactive prompts during install
ENV DEBIAN_FRONTEND=noninteractive

# Update and install basic build dependencies (adjust to your needs)
RUN apt-get update && apt-get install -y \
    build-essential \
    cmake \
    llvm-14 \
    zlib1g-dev

# Set working directory inside the container
WORKDIR /app

# Copy your source code into the container
COPY . .

RUN rm -r build
RUN cmake -B build
RUN cmake --build build

CMD ["/bin/bash"]