add dockerfile
This commit is contained in:
parent
df90167047
commit
3833fee43d
1 changed files with 15 additions and 0 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal 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"]
|
Loading…
Reference in a new issue