Fix data directory path in Dockerfile

This commit is contained in:
Asher 2019-12-10 12:06:52 -06:00
parent e5fc63f2c8
commit 44c4722edf
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A

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