File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
2+
3+ # use this Dockerfile to install additional tools you might need, e.g.
4+ # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
5+ # && apt-get -y install --no-install-recommends <your-package-list-here>
Original file line number Diff line number Diff line change 1+ // The Dev Container format allows you to configure your environment. At the heart of it
2+ // is a Docker image or Dockerfile which controls the tools available in your environment.
3+ //
4+ // See https://aka.ms/devcontainer.json for more information.
5+ {
6+ "name" : " Gitpod" ,
7+ // Use "image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04",
8+ // instead of the build to use a pre-built image.
9+ "build" : {
10+ "context" : " ." ,
11+ "dockerfile" : " Dockerfile"
12+ }
13+ // Features add additional features to your environment. See https://containers.dev/features
14+ // Beware: features are not supported on all platforms and may have unintended side-effects.
15+ // "features": {
16+ // "ghcr.io/devcontainers/features/docker-in-docker": {
17+ // "moby": false
18+ // }
19+ // }
20+ }
You can’t perform that action at this time.
0 commit comments