Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit eff23f6

Browse files
committed
Added basic ubuntu container
1 parent 99ab06f commit eff23f6

File tree

4 files changed

+49
-0
lines changed

4 files changed

+49
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#-----------------------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See LICENSE in the project root for license information.
4+
#-----------------------------------------------------------------------------------------
5+
FROM ubuntu:bionic
6+
7+
# Install common tools developers typically will need
8+
RUN apt-get update \
9+
&& apt-get install -y git
10+
11+
# Clean up
12+
RUN apt-get autoremove -y \
13+
&& apt-get clean -y \
14+
&& rm -rf /var/lib/apt/lists/*
15+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "Ubuntu 18.04 + Git",
3+
"dockerFile": ".devcontainer/Dockerfile",
4+
"appPort": []
5+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
README.md
2+
test-project
3+
.vscode
4+
.npmignore
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Ubuntu 18.04 + Git
2+
3+
## Summary
4+
5+
*A starter container definition with Ubuntu 18.04 and Git installed.*
6+
7+
| Metadata | Value |
8+
|----------|-------|
9+
| *Contributors* | The VS Code Team |
10+
| *Definition type* | Dockerfile |
11+
| *Languages, platforms* | Any |
12+
13+
## Usage
14+
15+
[See here for information on using this definition with an existing project](../../README.md#using-a-definition).
16+
17+
If you prefer, you can also just look through the contents of the `.devcontainer` folder to understand how to make changes to your own project.
18+
19+
If you want to try out the test project instead, run **Remote-Container: Open Folder in Container...** in VS Code and select a cloned copy of the entire folder. You can then start the test program from Debug panel in VS Code.
20+
21+
## License
22+
23+
Copyright (c) Microsoft Corporation. All rights reserved.
24+
25+
Licensed under the MIT License. See [LICENSE](../../LICENSE).

0 commit comments

Comments
 (0)