Add a Dockerfile and instructions to run with Docker
[relay.git/.git] / Dockerfile
1 FROM python:3-alpine
2 WORKDIR /workdir
3 RUN apk add alpine-sdk autoconf automake libtool gcc
4
5 ADD relay /workdir/relay
6 ADD requirements.txt /workdir/
7 RUN pip3 install -r requirements.txt
8
9 ADD relay.yaml /workdir/
10 CMD ["python", "-m", "relay"]
11
12 VOLUME ["/workdir/data"]