File: Dockerfile

package info (click to toggle)
cherrytree 1.2.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 23,528 kB
  • sloc: cpp: 102,757; ansic: 14,613; xml: 1,532; sh: 374; python: 288; javascript: 80; ruby: 63; makefile: 9
file content (26 lines) | stat: -rw-r--r-- 839 bytes parent folder | download
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
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.148.1/containers/cpp/.devcontainer/base.Dockerfile

# [Choice] Debian / Ubuntu version: debian-10, debian-9, ubuntu-20.04, ubuntu-18.04
ARG VARIANT="ubuntu-20.04"
FROM mcr.microsoft.com/vscode/devcontainers/cpp:0-${VARIANT}

RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
    && apt-get -y install --no-install-recommends \
      build-essential \
      cmake \
      gettext \
      ninja-build \
      libcpputest-dev \
      libcurl4-openssl-dev \
      libgspell-1-dev \
      libgtkmm-3.0-dev \
      libgtksourceview-4-dev \
      libsqlite3-dev \
      libuchardet-dev \
      libfmt-dev \
      libspdlog-dev \
      libxml++2.6-dev \
      libxml2-utils \
      libuchardet-dev \
      libfribidi-dev \
      libvte-2.91-dev