add dockerfile

This commit is contained in:
Jan Christian Grünhage 2017-11-20 06:31:38 +01:00
parent df90167047
commit 3833fee43d
1 changed files with 15 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM docker.io/jcgruenhage/baseimage-alpine
MAINTAINER Jan Christian Grünhage <jan.christian@gruenhage.xyz>
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"]