File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111
1212jobs :
1313
14- base :
14+ multi-simulator :
1515 runs-on : ubuntu-latest
1616 steps :
1717 - uses : actions/checkout@v2
2121 echo "${{ secrets.DOCKER_PASS }}" | docker login -u "${{ secrets.DOCKER_USER }}" --password-stdin
2222 docker push terostech/multi-simulator
2323 docker logout
24+
25+ colibri :
26+ runs-on : ubuntu-latest
27+ steps :
28+ - uses : actions/checkout@v2
29+ - run : docker build -t terostech/colibri - < colibri.dockerfile
30+ - name : Deploy to hub.docker.com
31+ run : |
32+ echo "${{ secrets.DOCKER_PASS }}" | docker login -u "${{ secrets.DOCKER_USER }}" --password-stdin
33+ docker push terostech/colibri
34+ docker logout
Original file line number Diff line number Diff line change 1+ FROM ubuntu
2+
3+ LABEL Mantainers="Carlos Alberto, Ismael Perez, Alfredo Enrique Saez"
4+
5+ ENV HOME /home
6+ WORKDIR /home
7+
8+ RUN apt-get update -qq \
9+ && DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
10+ apt-utils \
11+ git \
12+ bzip2 \
13+ python3.7 \
14+ python3-pip \
15+ python3-dev \
16+ nodejs \
17+ npm \
18+ wget \
19+ && pip3 install vunit_hdl
20+ RUN npm install -g n \
21+ && n stable
22+ RUN mkdir /app \
23+ && cd /app \
24+ && git clone https://github.com/TerosTechnology/colibri.git \
25+ && cd colibri \
26+ && npm install -g .
You can’t perform that action at this time.
0 commit comments