We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8551928 commit 6d61b63Copy full SHA for 6d61b63
.devcontainer/Dockerfile
@@ -0,0 +1,3 @@
1
+FROM mcr.microsoft.com/devcontainers/javascript-node:1-20-bookworm
2
+
3
+RUN sudo apt-get update && sudo apt-get install -y libjpeg-dev webp libpng-dev libavifile-0.7c2 libopenjpip7 imagemagick libvips-tools
.devcontainer/devcontainer.json
@@ -0,0 +1,21 @@
+{
+ "name": "Node.js",
+ "build": { "dockerfile": "Dockerfile" },
4
5
+ "features": {
6
+ "ghcr.io/devcontainers/features/ruby:1": {
7
+ "version": "3.2.2"
8
+ },
9
+ "ghcr.io/devcontainers/features/github-cli:1": {}
10
11
+ "customizations": {
12
+ "vscode": {
13
+ "extensions": [
14
+ "bradlc.vscode-tailwindcss",
15
+ "dbaeumer.vscode-eslint"
16
+ ]
17
+ }
18
19
20
+ "forwardPorts": [4000]
21
+}
0 commit comments