File: ubuntu.dockerfile

package info (click to toggle)
systemc 3.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 42,320 kB
  • sloc: cpp: 190,864; sh: 4,918; asm: 2,619; perl: 1,980; ansic: 1,900; makefile: 1,768; fortran: 492; python: 482; awk: 157; csh: 50
file content (20 lines) | stat: -rw-r--r-- 394 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ARG UBUNTU_VERSION=20.04
ARG IMAGE=ubuntu:$UBUNTU_VERSION

FROM $IMAGE

WORKDIR /app

RUN apt-get update && \
    apt-get install -y \
    cmake \
    gcc \
    g++ \
    clang \
    && rm -rf /var/lib/apt/lists/*

# Copy the current directory contents into the container at /app
COPY . /app
# Setup entrypoint CI script
COPY ./docker/entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]