summaryrefslogtreecommitdiff
path: root/.devcontainer
diff options
context:
space:
mode:
authorGravatar Arsh <69170106+lilnasy@users.noreply.github.com> 2023-10-10 14:06:35 +0000
committerGravatar GitHub <noreply@github.com> 2023-10-10 19:36:35 +0530
commitc071458257b014efcae7ec7e29d5d87d5ecaf8b6 (patch)
tree304078f02d38021702b96cecbc3189ff9c6689eb /.devcontainer
parent0ab6bad7dffd413c975ab00e545f8bc150f6a92f (diff)
downloadastro-c071458257b014efcae7ec7e29d5d87d5ecaf8b6.tar.gz
astro-c071458257b014efcae7ec7e29d5d87d5ecaf8b6.tar.zst
astro-c071458257b014efcae7ec7e29d5d87d5ecaf8b6.zip
chore: removed adapters cleanup (#8726)
* update ci, readme, comments, remote workspaces * fix hosted test fixture * keep adapter config typedocs
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/Dockerfile4
-rw-r--r--.devcontainer/deno/devcontainer.json34
-rw-r--r--.devcontainer/examples.deno.Dockerfile10
3 files changed, 0 insertions, 48 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index de1541343..85a51017b 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -6,10 +6,6 @@ RUN npm install -g @playwright/test
# Install latest pnpm
RUN npm install -g pnpm
-# Install deno
-ENV DENO_INSTALL=/usr/local
-RUN curl -fsSL https://deno.land/x/install/install.sh | sh
-
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& curl -sSL https://dl.google.com/linux/direct/google-chrome-stable_current_$(dpkg --print-architecture).deb -o /tmp/chrome.deb \
&& apt-get -y install /tmp/chrome.deb
diff --git a/.devcontainer/deno/devcontainer.json b/.devcontainer/deno/devcontainer.json
deleted file mode 100644
index 05b733527..000000000
--- a/.devcontainer/deno/devcontainer.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "name": "Deno",
- "build": {
- "dockerfile": "../examples.deno.Dockerfile"
- },
-
- "workspaceFolder": "/workspaces/astro/examples/deno",
-
- "portsAttributes": {
- "4321": {
- "label": "Application",
- "onAutoForward": "openPreview"
- }
- },
-
- "forwardPorts": [4321],
-
- "postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build",
-
- "waitFor": "postCreateCommand",
-
- "postAttachCommand": {
- "Server": "pnpm start --host"
- },
-
- "customizations": {
- "codespaces": {
- "openFiles": ["src/pages/index.astro"]
- },
- "vscode": {
- "extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"]
- }
- }
-}
diff --git a/.devcontainer/examples.deno.Dockerfile b/.devcontainer/examples.deno.Dockerfile
deleted file mode 100644
index e4526f1ac..000000000
--- a/.devcontainer/examples.deno.Dockerfile
+++ /dev/null
@@ -1,10 +0,0 @@
-FROM mcr.microsoft.com/devcontainers/javascript-node:0-18
-
-# Install latest pnpm
-RUN npm install -g pnpm
-
-# Install deno
-ENV DENO_INSTALL=/usr/local
-RUN curl -fsSL https://deno.land/x/install/install.sh | sh
-
-COPY example-welcome-message.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt \ No newline at end of file