docker-ffs/Dockerfile

16 lines
343 B
Docker
Raw Permalink Normal View History

2017-11-20 05:31:38 +00:00
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"]