Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
magaupp committed Sep 15, 2024
1 parent 1f5aaf0 commit 7c21ae5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
FROM ubuntu:24.04

RUN apt-get update && apt-get install -y --no-install-recommends \
catch2 \
clang \
clang-format \
cmake \
g++ \
gcc \
libclang-rt-dev \
make \
python3 \
python3-pip \
python3-venv \
&& apt-get dist-clean

RUN useradd -m artemis_user

# drop privileges to artemis_user after setup
USER root

0 comments on commit 7c21ae5

Please sign in to comment.