diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 000000000..201251d04 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,18 @@ +FROM mcr.microsoft.com/vscode/devcontainers/base:ubuntu + +RUN sudo apt update && \ + sudo apt install -y \ + autoconf \ + automake \ + build-essential \ + cmake \ + libtool \ + pkg-config \ + nasm \ + zlib1g-dev \ + libvorbis-dev \ + libx264-dev \ + libx265-dev \ + libxml2-dev \ + python3-pip \ + python3-virtualenv diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..c696f744c --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,18 @@ +{ + "build": { + "dockerfile": "Dockerfile" + }, + "name": "pyav", + "forwardPorts": [], + "appPort": [], + "privileged": true, + "mounts": [], + "containerEnv": {}, + "runArgs": [], + "customizations": { + "vscode": { + "settings": {}, + "extensions": [] + } + } +}