photoprism/docker/webdav/Dockerfile

17 lines
310 B
Docker
Raw Normal View History

FROM golang:1
2021-05-16 14:08:49 +00:00
LABEL maintainer="Michael Mayer <hello@photoprism.org>"
# Set up project directory
WORKDIR "/webdav"
RUN go get github.com/hacdias/webdav
# Expose HTTP port
EXPOSE 80
COPY /docker/webdav/config.yml /webdav/config.yml
COPY /docker/webdav/files /webdav/files
CMD webdav -c /webdav/config.yml