Dockerfiles: Add davfs2 to mount WebDAV drives
This commit is contained in:
parent
0192f976bc
commit
3cd57e4104
5 changed files with 13 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM photoprism/development:20210222
|
||||
FROM photoprism/development:20210226
|
||||
|
||||
# Set up project directory
|
||||
WORKDIR "/go/src/github.com/photoprism/photoprism"
|
||||
|
|
|
@ -17,7 +17,10 @@ RUN echo 'Acquire::Retries "10";' > /etc/apt/apt.conf.d/80retry && \
|
|||
RUN apt-get update && apt-get upgrade && \
|
||||
apt-get install \
|
||||
build-essential \
|
||||
ca-certificates \
|
||||
wget \
|
||||
curl \
|
||||
davfs2 \
|
||||
chrpath \
|
||||
libssl-dev \
|
||||
libxft-dev \
|
||||
|
@ -42,7 +45,6 @@ RUN apt-get update && apt-get upgrade && \
|
|||
apt-utils \
|
||||
make \
|
||||
nano \
|
||||
wget \
|
||||
git \
|
||||
gettext \
|
||||
mariadb-client \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM photoprism/development:20210222 as build
|
||||
FROM photoprism/development:20210226 as build
|
||||
|
||||
# Set up project directory
|
||||
WORKDIR "/go/src/github.com/photoprism/photoprism"
|
||||
|
@ -23,6 +23,8 @@ RUN echo 'Acquire::Retries "10";' > /etc/apt/apt.conf.d/80retry && \
|
|||
# Install additional distribution packages
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
wget \
|
||||
curl \
|
||||
davfs2 \
|
||||
ca-certificates \
|
||||
mariadb-client \
|
||||
sqlite3 \
|
||||
|
|
|
@ -122,6 +122,9 @@ RUN echo 'APT::Get::Fix-Missing "true";' > /etc/apt/apt.conf.d/80fixmissin
|
|||
|
||||
# Install additional distribution packages
|
||||
RUN apt-get update && apt-get upgrade && apt-get install -y --no-install-recommends \
|
||||
wget \
|
||||
curl \
|
||||
davfs2 \
|
||||
ca-certificates \
|
||||
mariadb-client \
|
||||
sqlite3 \
|
||||
|
|
|
@ -121,6 +121,9 @@ RUN echo 'APT::Get::Fix-Missing "true";' > /etc/apt/apt.conf.d/80fixmissin
|
|||
|
||||
# Install additional distribution packages
|
||||
RUN apt-get update && apt-get upgrade && apt-get install -y --no-install-recommends \
|
||||
wget \
|
||||
curl \
|
||||
davfs2 \
|
||||
ca-certificates \
|
||||
mariadb-client \
|
||||
sqlite3 \
|
||||
|
|
Loading…
Add table
Reference in a new issue