Skip to content

Commit

Permalink
add a Fedora dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nosracd committed Mar 14, 2023
1 parent 94a2712 commit 862d117
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docker/Dockerfile.fedora
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM fedora:37

# cmake3: To build LCM
# clang: For compiling code with Clang
# glib2-devel: A dependency of LCM
# java-17-openjdk-devel: Latest LTS release of Java for building lcm-spy, lcm-logplayer-gui, etc.
# python3-devel: Support library to compile the Python Extension Module
RUN dnf install -y \
cmake3 \
clang \
glib2-devel \
java-17-openjdk-devel \
python3-devel

WORKDIR /work

0 comments on commit 862d117

Please sign in to comment.