prjemian / epics-docker

Provide EPICS IOCs in docker images
9 stars 4 forks source link

new plain Area Detector image #18

Closed prjemian closed 3 years ago

prjemian commented 3 years ago

Built from source with these plugins:

prjemian commented 3 years ago

While updating and installing OS features, got this error:

debconf: (TERM is not set, so the dialog frontend is not usable.)

which has this solution online: https://askubuntu.com/questions/506158/unable-to-initialize-frontend-dialog-when-using-ssh

was:

RUN \
    apt-get update  -y && \
    pt-get install -y  \
       libx11-dev \
       x11-xserver-utils \
       xorg-dev \
       xvfb \
       && \
    rm -rf /var/lib/apt/lists/*

is now

RUN \
    apt-get update  -y && \
    DEBIAN_FRONTEND=noninteractive apt-get install -y  \
       libx11-dev \
       x11-xserver-utils \
       xorg-dev \
       xvfb \
       && \
    rm -rf /var/lib/apt/lists/*
prjemian commented 3 years ago

No module ADPluginCentroids in AD 3.10 release.