Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
f62e0879
Unverified
Commit
f62e0879
authored
5 years ago
by
Michael Kriese
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
chore(internal): simplify devcontainer image (#5754)
parent
d8d26d0d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.devcontainer/Dockerfile
+5
-12
5 additions, 12 deletions
.devcontainer/Dockerfile
.devcontainer/devcontainer.json
+1
-0
1 addition, 0 deletions
.devcontainer/devcontainer.json
with
6 additions
and
12 deletions
.devcontainer/Dockerfile
+
5
−
12
View file @
f62e0879
#-------------------------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------
FROM
mcr.microsoft.com/vscode/devcontainers/typescript-node:0.108.0-12@sha256:0afe371ce3995bb57590075d902619c2098c9071e8a4cd71f7c00082faede09f
# To fully customize the contents of this image, use the following Dockerfile instead:
# https://github.com/microsoft/vscode-dev-containers/tree/v0.106.0/containers/typescript-node-12/.devcontainer/Dockerfile
FROM
mcr.microsoft.com/vscode/devcontainers/typescript-node:0-12@sha256:0afe371ce3995bb57590075d902619c2098c9071e8a4cd71f7c00082faede09f
ENV
DEBIAN_FRONTEND=noninteractive
RUN
apt-get update
\
&&
apt-get
-y
install
--no-install-recommends
git python-minimal build-essential
\
# see https://mcr.microsoft.com/v2/vscode/devcontainers/typescript-node/tags/list for tags
# Add missing renovate dev tools
RUN
DEBIAN_FRONTEND
=
noninteractive apt-get update
\
&&
apt-get
-y
install
--no-install-recommends
--no-upgrade
build-essential
\
&&
rm
-rf
/var/lib/apt/lists/
*
ENV
DEBIAN_FRONTEND=dialog
This diff is collapsed.
Click to expand it.
.devcontainer/devcontainer.json
+
1
−
0
View file @
f62e0879
...
...
@@ -6,5 +6,6 @@
"settings"
:
{
"terminal.integrated.shell.linux"
:
"/bin/bash"
},
"extensions"
:
[
"dbaeumer.vscode-eslint"
,
"esbenp.prettier-vscode"
],
"postCreateCommand"
:
"yarn install"
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment