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

Commit 126f80f

Browse files
committed
Added LTS versions of node container defs
1 parent eff23f6 commit 126f80f

File tree

89 files changed

+4009
-20
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+4009
-20
lines changed

containers/docker-existing-docker-compose/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Extend an Existing Docker Compose",
2+
"name": "Existing Docker Compose (Extend)",
33

44
"// Update the 'dockerComposeFile' list if you have more compose files or use different names.":"",
55
"// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.":"",

containers/docker-existing-dockerfile/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Reuse an Existing Dockerfile",
2+
"name": "Existing Dockerfile",
33

44
"// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.":"",
55

containers/docker-existing-dockerfile/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Reusean Existing Dockerfile
1+
# Existing Dockerfile
22

33
## Summary
44

containers/docker-in-docker-compose/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Docker-in-Docker Compose",
2+
"name": "Docker in Docker Compose",
33
"dockerComposeFile": ".devcontainer/docker-compose.yml",
44
"service": "docker-in-docker",
55
"workspaceFolder": "/workspace",

containers/dotnetcore-2.2-fsharp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# F#
1+
# F# (.NET Core 2.2)
22

33
## Summary
44

containers/dotnetcore-2.2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# .NET Core v2.2
1+
# .NET Core 2.2
22

33
## Summary
44

containers/java-8-maven/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Java v8 and Maven
1+
# Java 8 & Maven
22

33
## Summary
44

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
6+
FROM node:8-slim
7+
8+
# Install yarn and git
9+
RUN apt-get update \
10+
&& apt-get install -y apt-transport-https \
11+
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
12+
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
13+
&& apt-get update \
14+
&& apt-get install -y yarn git
15+
16+
# Install eslint
17+
RUN npm install -g eslint
18+
19+
# Clean up
20+
RUN apt-get autoremove -y \
21+
&& apt-get clean -y \
22+
&& rm -rf /var/lib/apt/lists/*
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "Node.js 8 & Yarn",
3+
"dockerFile": ".devcontainer/Dockerfile",
4+
"appPort": 3000,
5+
"extensions": [
6+
"dbaeumer.vscode-eslint"
7+
]
8+
}
File renamed without changes.

0 commit comments

Comments
 (0)