diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b275bd0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM docker.io/jcgruenhage/baseimage-alpine +MAINTAINER Jan Christian Grünhage + +WORKDIR /ffs +RUN apk add --update \ + build-base \ + python2 \ + python2-dev \ + py-virtualenv \ + py2-pysqlite \ + git \ + && git clone https://github.com/mozilla-services/syncserver.git /ffs \ + && make build + +CMD ["make", "serve"]