magnetico/magneticod/Dockerfile
Chris Rose dd40222fd6 Dockerize magnetico as a pair of conjoined containers
docker-compose links them, they share a DB on a volume container, and
expose the web interface on the host port 12345
2017-04-10 09:13:14 -07:00

10 lines
127 B
Docker

FROM python:3.6
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY . .
RUN pip install -e .
CMD ["python", "-mmagneticod"]