Skip to content

Commit 2414c57

Browse files
committed
fix paths
1 parent a54cd79 commit 2414c57

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,10 @@ RUN echo "export PATH=$PATH" >> /home/coder/.bashrc
4040
USER coder
4141

4242
# Additional VSCode settings
43-
COPY settings/User /home/coder/.local/share/code-server/User
44-
COPY settings/Machine /home/coder/.local/share/code-server/Machine
43+
RUN mkdir -p /home/coder/.local/share/code-server/User/
44+
COPY User.json /home/coder/.local/share/code-server/User/settings.json
45+
RUN mkdir -p /home/coder/.local/share/code-server/Machine/
46+
COPY Machine.json /home/coder/.local/share/code-server/Machine/settings.json
4547

4648
# INSTALL VSTUDIO EXTENSIONS
4749
RUN code-server --install-extension ms-python.python

0 commit comments

Comments
 (0)