File tree Expand file tree Collapse file tree 4 files changed +63
-0
lines changed Expand file tree Collapse file tree 4 files changed +63
-0
lines changed Original file line number Diff line number Diff line change
1
+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the
2
+ // README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
3
+ {
4
+ "name" : " Existing Dockerfile" ,
5
+ "build" : {
6
+ // Sets the run context to one level up instead of the .devcontainer folder.
7
+ "context" : " .." ,
8
+ // Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.
9
+ "dockerfile" : " ../Dockerfile"
10
+ }
11
+
12
+ // Features to add to the dev container. More info: https://containers.dev/features.
13
+ // "features": {},
14
+
15
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
16
+ // "forwardPorts": [],
17
+
18
+ // Uncomment the next line to run commands after the container is created.
19
+ // "postCreateCommand": "cat /etc/os-release",
20
+
21
+ // Configure tool-specific properties.
22
+ // "customizations": {},
23
+
24
+ // Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
25
+ // "remoteUser": "devcontainer"
26
+ }
Original file line number Diff line number Diff line change
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for more information:
4
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+ # https://containers.dev/guide/dependabot
6
+
7
+ version : 2
8
+ updates :
9
+ - package-ecosystem : " devcontainers"
10
+ directory : " /"
11
+ schedule :
12
+ interval : weekly
Original file line number Diff line number Diff line change
1
+ FROM node:19 AS base
2
+ RUN touch ~/.bashrc && chmod +x ~/.bashrc
3
+ RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
4
+ RUN . ~/.nvm/nvm.sh
5
+ RUN . ~/.nvm/nvm.sh install 13
6
+ RUN . ~/.nvm/nvm.sh use 13
7
+ RUN apt update
8
+ RUN apt install -y python2
9
+ RUN python2 -v
10
+
11
+ FROM base AS build
12
+ WORKDIR /app
13
+ COPY package.json .
14
+ RUN npm install
15
+ COPY . .
Original file line number Diff line number Diff line change @@ -767,3 +767,13 @@ select.form-control {
767
767
}
768
768
}
769
769
}
770
+
771
+
772
+ // DARK THEME =============================
773
+
774
+ .dark-theme {
775
+ body {
776
+ background-color : rgb (34 , 34 , 34 );
777
+ color : #eee ;
778
+ }
779
+ }
You can’t perform that action at this time.
0 commit comments