Allow dialyzer (in elixir-ls) to write PLT file to ~/.mix in Docker (#1877)

Co-authored-by: José Valim <jose.valim@gmail.com>
Co-authored-by: Jonatan Kłosko <jonatanklosko@gmail.com>
This commit is contained in:
restlessronin 2023-04-27 22:07:31 +05:30 committed by GitHub
parent 9d6b247115
commit afe71a9bac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,5 +82,7 @@ COPY --from=build /app/_build/prod/rel/livebook /app
# Make release files available to any user, in case someone
# runs the container with `--user`
RUN chmod -R go=u /app
# Make all home files available (specifically .mix/)
RUN chmod -R go=u $HOME
CMD [ "/app/bin/livebook", "start" ]