summaryrefslogtreecommitdiff
path: root/contrib/ci/Containerfile
blob: a9da11ae819c3b96795c31fb9a9434c9ef5e5173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM docker.io/library/node:18-slim

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update -yq && \
    apt-get install -yqq \
                   git \
		   python3 \
                   codespell \
		   python3-distutils \
		   make \
		   zip \
		   jq \
                   # Debian packaging tools \
                   po-debconf \
                   build-essential \
                   debhelper-compat \
                   devscripts \
		   git-buildpackage \
    && rm -rf /var/lib/apt/lists/*

RUN npm install -g pnpm

# Set our workdir. All subsequent commands will be relative to this path.
WORKDIR /workdir

CMD ["bash", "/workdir/ci/ci.sh"]