mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-01 10:05:50 +00:00
* Port http storage to rust (#729) * Port http storage to rust * implement rest of parameters as far as possible * stylefixes * rustup * fix invalid timestamp * fix header file * Fix compilation errors * basic impl of dav * dockerize xandikos * add xandikos build * Fix circleci build * Fix circleci config * fix nextcloud port * stylefix * implement upload, upload, delete in rust * fix exc handling * python stylefixes * move caldav.list to rust * fix exc again (fastmail) * stylefixes * add basic logging, fix fastmail * stylefixes * fix tests for etag=None (icloud) * overwrite busted cargo-install-update * install clippy from git * fix rustfmt * rustfmt * clear cache
13 lines
316 B
Docker
13 lines
316 B
Docker
# Original file copyright 2017 Jelmer Vernooij
|
|
|
|
FROM ubuntu:latest
|
|
RUN apt-get update && apt-get -y install xandikos locales
|
|
EXPOSE 8080
|
|
|
|
RUN locale-gen en_US.UTF-8
|
|
ENV PYTHONIOENCODING=utf-8
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US:en
|
|
ENV LC_ALL en_US.UTF-8
|
|
|
|
CMD xandikos -d /tmp/dav -l 0.0.0.0 -p 5001 --autocreate
|