aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 156e3f89da1d1e7514724f1f0c1a8b741283be94 (plain)
1
2
3
4
5
6
7
8
9
FROM golang:alpine
RUN apk update && apk add git
RUN go get github.com/ecc1/spi
RUN go get github.com/gorilla/websocket
RUN go get github.com/MFAshby/unicornpaint/unicorn
COPY build/ build/
COPY Server.go ./
RUN go build -o ./unicornpaint Server.go
CMD ./unicornpaint