Created
August 24, 2021 16:15
-
-
Save matburt/44481353a4c9bbbd3947258cc2978202 to your computer and use it in GitHub Desktop.
.devcontainer for ansible runner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | |
// https://github.com/microsoft/vscode-dev-containers/tree/v0.192.0/containers/codespaces-linux | |
{ | |
"name": "GitHub Codespaces (Default)", | |
"build": { | |
"dockerfile": "Dockerfile" | |
}, | |
"settings": { | |
"go.toolsManagement.checkForUpdates": "local", | |
"go.useLanguageServer": true, | |
"go.gopath": "/go", | |
"go.goroot": "/usr/local/go", | |
"python.pythonPath": "/opt/python/latest/bin/python", | |
"python.linting.enabled": true, | |
"python.linting.pylintEnabled": true, | |
"python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8", | |
"python.formatting.blackPath": "/usr/local/py-utils/bin/black", | |
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf", | |
"python.linting.banditPath": "/usr/local/py-utils/bin/bandit", | |
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8", | |
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy", | |
"python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle", | |
"python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle", | |
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint", | |
"lldb.executable": "/usr/bin/lldb", | |
"files.watcherExclude": { | |
"**/target/**": true | |
} | |
}, | |
"remoteUser": "codespace", | |
"overrideCommand": false, | |
"mounts": [ | |
"source=codespaces-linux-var-lib-docker,target=/var/lib/docker,type=volume" | |
], | |
"runArgs": [ | |
"--cap-add=SYS_PTRACE", | |
"--security-opt", | |
"seccomp=unconfined", | |
"--privileged", | |
"--init" | |
], | |
// Add the IDs of extensions you want installed when the container is created. | |
"extensions": [ | |
"GitHub.vscode-pull-request-github" | |
], | |
// Use 'forwardPorts' to make a list of ports inside the container available locally. | |
// "forwardPorts": [], | |
// "oryx build" will automatically install your dependencies and attempt to build your project | |
"postCreateCommand": "pip install -e ." | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.192.0/containers/codespaces-linux/.devcontainer/base.Dockerfile | |
FROM mcr.microsoft.com/vscode/devcontainers/universal:1-focal | |
RUN pip3 install --user ansible | |
USER root | |
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ | |
&& apt-get -y install python3-pexpect | |
USER codespace |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment