Archived
1
0

Fix build and Dockerfile issues (#176)

* build: fix yarn corruption issues

Closes #100

Thanks @zerdos

* Dockerfile: add default Entrypoint and mount data dir

Closes #170
Closes #78

Thanks @ay-b
This commit is contained in:
Anmol Sethi
2019-03-09 17:51:51 -05:00
committed by Kyle Carberry
parent c471babc69
commit f37533579d
3 changed files with 4 additions and 6 deletions

View File

@ -28,5 +28,6 @@ RUN apt-get install -y locales && \
# We unfortunately cannot use update-locale because docker will not use the env variables
# configured in /etc/default/locale so we need to set it manually.
ENV LANG=en_US.UTF-8
# Unfortunately `.` does not work with code-server.
ENTRYPOINT code-server
# Unfortunately `.` does not work with code-server so we use shell form.
CMD code-server $PWD