Skip to content

Commit

Permalink
Add Dev Container configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
LitoMore authored Jan 18, 2025
1 parent 390e765 commit 3370f51
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM mcr.microsoft.com/vscode/devcontainers/base:ubuntu
COPY --from=denoland/deno:bin /deno /usr/local/bin/deno

EXPOSE 8000

WORKDIR /app

COPY . .
14 changes: 14 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "Deno",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"denoland.vscode-deno"
]
}
},
"forwardPorts": [8000]
}

0 comments on commit 3370f51

Please sign in to comment.