Skip to content

Commit

Permalink
Fixed platform
Browse files Browse the repository at this point in the history
  • Loading branch information
LordChunk committed May 6, 2024
1 parent 8c847ad commit 4be91bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deno/templates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ RUN curl -fsSL https://deno.land/install.sh | sh -s ${deno_version}

# Preinstall Code Server for user 'vscode' to speed up first run
COPY scripts/install-vs-code-server.sh /tmp/install-vs-code-server.sh
RUN su vscode -c "/tmp/install-vs-code-server.sh $(cat /tmp/arch)"
RUN su vscode -c "/tmp/install-vs-code-server.sh linux"
2 changes: 1 addition & 1 deletion laravel/templates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/

# Preinstall Code Server for user 'vscode' to speed up first run
COPY scripts/install-vs-code-server.sh /tmp/install-vs-code-server.sh
RUN su vscode -c "/tmp/install-vs-code-server.sh $(cat /tmp/arch)"
RUN su vscode -c "/tmp/install-vs-code-server.sh linux"
2 changes: 1 addition & 1 deletion typescript/templates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# We use 'node' instead of 'vscode' because the base image uses 'node' as the default user
# https://github.com/devcontainers/images/blob/main/src/javascript-node/.devcontainer/Dockerfile#L10
COPY scripts/install-vs-code-server.sh /tmp/install-vs-code-server.sh
RUN su node -c "/tmp/install-vs-code-server.sh $(cat /tmp/arch)"
RUN su node -c "/tmp/install-vs-code-server.sh linux"

0 comments on commit 4be91bc

Please sign in to comment.