commit af39a6c058f8a368b582174c1dd79a525187bf36 parent 20ee809e540556801fca87a573852d16c2ac7388 Author: Martin Ashby <martin@ashbysoft.com> Date: Sat, 19 May 2018 07:54:17 +0000 Fixed saves problem in docker, speed up build Diffstat:
A | .dockerignore | | | 1 | + |
M | Dockerfile | | | 14 | ++++++++------ |
M | docker-compose.yml | | | 2 | +- |
3 files changed, 10 insertions(+), 7 deletions(-)
diff --git a/.dockerignore b/.dockerignore @@ -0,0 +1 @@ +node_modules diff --git a/Dockerfile b/Dockerfile @@ -1,6 +1,8 @@ -FROM python:latest -RUN pip install unicornhathd Flask Flask-Sockets -RUN pip install numpy -COPY build/ /build/ -COPY server.py / -ENTRYPOINT python server.py +FROM golang:alpine +RUN apk update && apk add git +RUN go get github.com/ecc1/spi +RUN go get github.com/gorilla/websocket +COPY build/ build/ +COPY Server.go Unicorn.go RealUnicorn.go ./ +RUN go build -o ./unicornpaint Server.go Unicorn.go RealUnicorn.go +CMD ./unicornpaint diff --git a/docker-compose.yml b/docker-compose.yml @@ -6,7 +6,7 @@ services: ports: - "3001:3001" volumes: - - "/home/pi/docker/unicornpaint/saves/:/saves/" + - "/home/pi/docker/unicornpaint/saves/:/go/saves/" devices: - "/dev/spidev0.0:/dev/spidev0.0" restart: always