11 lines
679 B
Docker
11 lines
679 B
Docker
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.209.3/containers/cpp/.devcontainer/base.Dockerfile
|
|
|
|
# [Choice] Debian / Ubuntu version (use Debian 11/9, Ubuntu 18.04/21.04 on local arm64/Apple Silicon): debian-11, debian-10, debian-9, ubuntu-21.04, ubuntu-20.04, ubuntu-18.04
|
|
ARG VARIANT="bullseye"
|
|
FROM mcr.microsoft.com/vscode/devcontainers/cpp:0-${VARIANT}
|
|
|
|
# [Optional] Uncomment this section to install additional packages.
|
|
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
# && apt-get -y install --no-install-recommends <your-package-list-here>
|
|
RUN apt-get update && apt-get -y install tree vim tmux python3-pip
|