We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e59a9d commit cccae3aCopy full SHA for cccae3a
.devcontainer/Dockerfile
@@ -0,0 +1,11 @@
1
+FROM mcr.microsoft.com/devcontainers/python:3.9
2
+
3
+# Install system dependencies
4
+RUN apt-get update && apt-get install -y \
5
+ build-essential \
6
+ python3-pip \
7
+ twine \
8
+ git \
9
+ && apt-get clean
10
11
+ RUN pip install pytest
.devcontainer/devcontainer.json
@@ -0,0 +1,15 @@
+{
+ "name": "Pesto Dev Container",
+ "build": {
+ "dockerfile": "Dockerfile"
+ },
+ "settings": {
+ "python.pythonPath": "/usr/local/bin/python"
+ "extensions": [
+ "ms-python.python",
+ "ms-python.vscode-pylance"
12
+ ],
13
+ "remoteUser": "vscode",
14
+ "postAttachCommand": "sudo chown -R vscode /workspaces"
15
+}
0 commit comments