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

Commit

Permalink
Update to reflect new user settings location
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuxel committed Apr 10, 2019
1 parent 7271542 commit 796eda2
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion containers/dotnetcore-2.2-fsharp/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FROM microsoft/dotnet:2.2-sdk

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

# Install git
RUN apt-get update && apt-get -y install git
Expand Down
2 changes: 1 addition & 1 deletion containers/python-2/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
FROM python:2-slim

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

RUN pip install pylint

Expand Down
2 changes: 1 addition & 1 deletion containers/python-3-django/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
FROM python:3-slim

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

ENV PYTHONUNBUFFERED 1

Expand Down
2 changes: 1 addition & 1 deletion containers/python-3-flask-redis/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
FROM python:3-slim

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

RUN mkdir /workspace
WORKDIR /workspace
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apt-get autoremove -y \
COPY jupyter_notebook_config.py /home/jovyan/.jupyter/jupyter_notebook_config.py

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

RUN chown jovyan -R /home/jovyan

Expand Down
2 changes: 1 addition & 1 deletion containers/python-3/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
FROM python:3-slim

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

RUN pip install pylint

Expand Down
2 changes: 1 addition & 1 deletion containers/rust/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
FROM rust:1

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

RUN rustup update
RUN rustup component add rls rust-analysis rust-src
Expand Down
2 changes: 1 addition & 1 deletion containers/swift-4/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
FROM swift:4

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

# Install git
RUN apt-get update && apt-get -y install git
Expand Down

0 comments on commit 796eda2

Please sign in to comment.