Skip to content

Commit

Permalink
Switch to base ubuntu image for devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmorganson committed Mar 21, 2024
1 parent 41db45a commit 5445d9e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "dotfiles",
"image": "mcr.microsoft.com/devcontainers/universal:linux"
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
}
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM mcr.microsoft.com/devcontainers/universal:linux
FROM mcr.microsoft.com/devcontainers/base:ubuntu

USER codespace
USER vscode

WORKDIR /workspaces/.codespaces/.persistedshare/dotfiles
WORKDIR /home/vscode

COPY . .

RUN ./install.sh

ENTRYPOINT [ "/workspaces/.codespaces/.persistedshare/dotfiles/entrypoint.sh" ]
ENTRYPOINT [ "/home/vscode/entrypoint.sh" ]

0 comments on commit 5445d9e

Please sign in to comment.