Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1.06 KB

01-duplicate-configuration-example-file.md

File metadata and controls

36 lines (24 loc) · 1.06 KB
◀️ Previous step: Introduction

Duplicate configuration example file

Before you begin, you need to create a 'devcontainer.json' file and a 'Dockerfile' file in the directory '.devcontainer/'.

If you want to create a python application, you need to copy/paste the following files into the directory: '.devcontainer/'.

.devcontainer/templates/app-python/devcontainer.json
.devcontainer/templates/app-python/Dockerfile

If you want to create an application based on Azure Functions, you must copy/paste the following files into the directory: '.devcontainer/':

.devcontainer/templates/azure-function-python/devcontainer.json
.devcontainer/templates/azure-function-python/Dockerfile

The new tree should look like :

.devcontainer/
├── Dockerfile
├── devcontainer.json
├── install-deps.sh
├── ...
└── install.sh

Now we will mainly modify this file.