Archived
1
0

Fix data directory path in Dockerfile

This commit is contained in:
Asher
2019-12-10 12:06:52 -06:00
parent e5fc63f2c8
commit 44c4722edf

View File

@ -50,7 +50,7 @@ USER coder
# user is root.
RUN mkdir -p /home/coder/project
# To avoid EACCES issues on f.ex Crostini (ChromeOS)
RUN mkdir -p /home/coder/.local/code-server
RUN mkdir -p /home/coder/.local/share/code-server
WORKDIR /home/coder/project