* GibHubBuild of Medley container. * Add build.yml to master * fix version * add gitHubBuild branch * cleanup * add in gitHubBuild * GibHubBuild of Medley container. * cleanup * Cleanup
19 lines
552 B
Docker
19 lines
552 B
Docker
FROM interlisp/maiko:latest
|
|
ARG BUILD_DATE
|
|
LABEL name="Medley"
|
|
LABEL description="The Medley Interlisp environment"
|
|
LABEL url="https://github.com/Interlisp/medley"
|
|
LABEL build-time=$BUILD_DATE
|
|
|
|
RUN apt-get update && apt-get install -y tightvncserver
|
|
|
|
EXPOSE 5900
|
|
|
|
# Need to refine this down to only needed directories.
|
|
COPY . /app/medley
|
|
|
|
WORKDIR /app/medley
|
|
|
|
RUN adduser --disabled-password --gecos "" medley
|
|
USER medley
|
|
ENTRYPOINT USER=medley Xvnc -geometry 1280x720 :0 & DISPLAY=:0 PATH="/app/maiko:$PATH" ./run-medley -full -g 1280x720 -sc 1280x720 |