Skip to content

Instantly share code, notes, and snippets.

@ropnop
Created July 18, 2019 01:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ropnop/40f054892eae531d81ff2e9716df75e8 to your computer and use it in GitHub Desktop.
Save ropnop/40f054892eae531d81ff2e9716df75e8 to your computer and use it in GitHub Desktop.
webdav dockerfile
FROM python:alpine
RUN pip install wsgidav cheroot
RUN mkdir -p /webdav/share && mkdir -p /srv/data/share
COPY run.sh /webdav/
WORKDIR /webdav/
ENTRYPOINT "/webdav/run.sh"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment