Skip to content

Commit

Permalink
Merge pull request #14 from chillfig/updateUbuntu
Browse files Browse the repository at this point in the history
Fix #13, Adds 20.04 Ubuntu
  • Loading branch information
dzbaker authored Apr 18, 2024
2 parents 5d55d23 + 8bc7146 commit 4091097
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion rtems-4.11/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from ubuntu:18.04
from ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive

# Basic dependencies
run apt-get update && apt-get install -y git make curl
Expand Down
3 changes: 2 additions & 1 deletion rtems-5/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from ubuntu:18.04
from ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive

# Basic dependencies
run apt-get update && apt-get install -y git make
Expand Down
6 changes: 5 additions & 1 deletion rtems-6/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
from ubuntu:18.04
from ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive

# Basic dependencies
run apt-get update && apt-get install -y git make

# rtems dependencies
run apt-get install -y flex bison texinfo python-dev g++ unzip

# Added: Python development package installation for RTEMS build dependencies
run apt-get install -y python3-dev libpython3-dev

# QEMU dependencies
run apt-get install -y qemu-system-i386

Expand Down

0 comments on commit 4091097

Please sign in to comment.