mirror of
https://github.com/vale981/melpazoid
synced 2025-03-04 17:01:40 -05:00
reorganize repo; update Dockerfile maintainer
This commit is contained in:
parent
2dae6d83e3
commit
9cd31b5c94
5 changed files with 10 additions and 6 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,2 +1,6 @@
|
|||
_requirements.el
|
||||
_elisp
|
||||
*.elc
|
||||
|
||||
.mypy_cache
|
||||
.pytest_cache
|
||||
|
|
12
Dockerfile
12
Dockerfile
|
@ -1,8 +1,8 @@
|
|||
# Based on https://github.com/JAremko/docker-emacs
|
||||
|
||||
ARG VERSION=latest
|
||||
FROM ubuntu:$VERSION
|
||||
|
||||
MAINTAINER JAremko <w3techplaygound@gmail.com>
|
||||
|
||||
# Fix "Couldn't register with accessibility bus" error message
|
||||
ENV NO_AT_BRIDGE=1
|
||||
|
||||
|
@ -49,16 +49,16 @@ RUN useradd emacser -d $WORKSPACE
|
|||
RUN mkdir -p $ELISP_PATH && chown -R emacser $WORKSPACE
|
||||
USER emacser:emacser
|
||||
|
||||
COPY setup-core.el $WORKSPACE
|
||||
RUN emacs --script $WORKSPACE/setup-core.el
|
||||
COPY docker/requirements.el $WORKSPACE
|
||||
RUN emacs --script $WORKSPACE/requirements.el
|
||||
|
||||
COPY _requirements.el $WORKSPACE
|
||||
RUN emacs --script ~/_requirements.el
|
||||
|
||||
COPY --chown=emacser:emacser .emacs $WORKSPACE
|
||||
COPY --chown=emacser:emacser docker/.emacs $WORKSPACE
|
||||
COPY --chown=emacser:emacser _elisp $ELISP_PATH
|
||||
COPY --chown=emacser:emacser melpazoid.el $ELISP_PATH
|
||||
COPY --chown=emacser:emacser start.sh $ELISP_PATH
|
||||
COPY --chown=emacser:emacser docker/start.sh $ELISP_PATH
|
||||
|
||||
ARG PACKAGE_NAME
|
||||
ENV PACKAGE_NAME "${PACKAGE_NAME}"
|
||||
|
|
Loading…
Add table
Reference in a new issue