Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 796eda2

Browse files
committed
Update to reflect new user settings location
1 parent 7271542 commit 796eda2

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

containers/dotnetcore-2.2-fsharp/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM microsoft/dotnet:2.2-sdk
77

88
# Copy endpoint specific user settings overrides into container to specify
99
# .NET Core should be used as the runtime.
10-
COPY settings.vscode.json /root/.vscode-remote/data/User/settings.json
10+
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
1111

1212
# Install git
1313
RUN apt-get update && apt-get -y install git

containers/python-2/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
FROM python:2-slim
77

88
# Copy endpoint specific user settings overrides into container to specify Python path
9-
COPY settings.vscode.json /root/.vscode-remote/data/User/settings.json
9+
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
1010

1111
RUN pip install pylint
1212

containers/python-3-django/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
FROM python:3-slim
77

88
# Copy default endpoint specific user settings overrides into container to specify Python path
9-
COPY settings.vscode.json /root/.vscode-remote/data/User/settings.json
9+
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
1010

1111
ENV PYTHONUNBUFFERED 1
1212

containers/python-3-flask-redis/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
FROM python:3-slim
77

88
# Copy default endpoint specific user settings overrides into container to specify Python path
9-
COPY settings.vscode.json /root/.vscode-remote/data/User/settings.json
9+
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
1010

1111
RUN mkdir /workspace
1212
WORKDIR /workspace

containers/python-3-jupyter-pyspark/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN apt-get autoremove -y \
1919
COPY jupyter_notebook_config.py /home/jovyan/.jupyter/jupyter_notebook_config.py
2020

2121
# Copy default endpoint specific user settings overrides into container to specify Python path, token
22-
COPY settings.vscode.json /home/jovyan/.vscode-remote/data/User/settings.json
22+
COPY settings.vscode.json /home/jovyan/.vscode-remote/data/Machine/settings.json
2323

2424
RUN chown jovyan -R /home/jovyan
2525

containers/python-3/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
FROM python:3-slim
77

88
# Copy default endpoint specific user settings overrides into container to specify Python path
9-
COPY settings.vscode.json /root/.vscode-remote/data/User/settings.json
9+
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
1010

1111
RUN pip install pylint
1212

containers/rust/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
FROM rust:1
77

88
# Copy endpoint specific user setting overrides into container
9-
COPY settings.vscode.json /root/.vscode-remote/data/User/settings.json
9+
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
1010

1111
RUN rustup update
1212
RUN rustup component add rls rust-analysis rust-src

containers/swift-4/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
FROM swift:4
77

88
# Copy endpoint specific user setting overrides into container
9-
COPY settings.vscode.json /root/.vscode-remote/data/User/settings.json
9+
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
1010

1111
# Install git
1212
RUN apt-get update && apt-get -y install git

0 commit comments

Comments
 (0)