-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #349 from riscv-software-src/AFOliveira/docker
Add dockerFile support
- Loading branch information
Showing
6 changed files
with
176 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
FROM ubuntu:24.04 AS spython-base | ||
FROM ubuntu:24.04 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
WORKDIR /workspace | ||
|
||
RUN export DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update | ||
RUN apt-get install -y --no-install-recommends git gh | ||
RUN apt-get install -y --no-install-recommends less | ||
RUN apt-get install -y --no-install-recommends python3 | ||
RUN apt-get install -y --no-install-recommends python3.12-venv python3-pip | ||
RUN apt-get install -y --no-install-recommends python3.12-venv | ||
RUN apt-get install -y --no-install-recommends python3-pip | ||
RUN apt-get install -y --no-install-recommends build-essential | ||
RUN apt-get install -y --no-install-recommends ruby ruby-dev | ||
RUN apt-get install -y --no-install-recommends ruby | ||
RUN apt-get install -y --no-install-recommends ruby-dev | ||
RUN apt-get install -y --no-install-recommends bundler | ||
RUN apt-get install -y --no-install-recommends nodejs | ||
RUN apt-get install -y --no-install-recommends npm | ||
RUN apt-get install -y --no-install-recommends ditaa | ||
RUN apt-get install -y --no-install-recommends libyaml-dev | ||
RUN apt-get clean autoclean | ||
RUN apt-get autoremove -y | ||
RUN rm -rf /var/lib/{apt, dpkg, cache, log} | ||
RUN rm -rf /var/lib/{apt,dpkg,cache,log}/* | ||
|
||
WORKDIR /workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
.stamps | ||
.venv | ||
.asciidoctor | ||
.container-type | ||
diag-ditaa-* | ||
arch/manual/isa/**/riscv-isa-manual | ||
gen | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule docs-resources
updated
39 files