photolib/Dockerfile

39 lines
902 B
Docker
Raw Normal View History

2018-09-11 22:25:09 -07:00
FROM ubuntu:bionic
RUN apt-get update && \
apt-get install -y wget software-properties-common && \
echo "deb https://deb.nodesource.com/node_10.x bionic main" | tee /etc/apt/sources.list.d/nodesource.list && \
2019-07-06 11:25:15 -07:00
wget -q -O- https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
2018-09-11 22:25:09 -07:00
apt-get update && \
apt-get install -y nodejs
ADD . /tmp/code/
RUN cd /tmp/code && \
npm install && \
./node_modules/.bin/grunt
2019-07-06 11:25:15 -07:00
FROM ubuntu:disco
2018-09-11 22:25:09 -07:00
ADD . /tmp/code/
COPY --from=0 /tmp/code/styles/dist/style.css /tmp/code/styles/dist/style.css
RUN apt-get update && \
apt-get install -y python3-pip
RUN pip3 install -U pip && \
cd /tmp/code && \
2019-07-06 11:25:15 -07:00
pip3 install -r requirements.txt && \
2018-09-11 22:25:09 -07:00
python3 setup.py install && \
useradd --uid 1000 app
VOLUME /srv/library
VOLUME /srv/cache
VOLUME /srv/db
USER app
2019-07-06 11:25:15 -07:00
ENV CACHE_PATH=/tmp/cache
2018-09-11 22:25:09 -07:00
2019-07-06 11:25:15 -07:00
ENTRYPOINT ["photoappd"]