nori/server.Dockerfile
2022-03-25 17:19:32 -05:00

8 lines
143 B
Docker

from golang:1.18-alpine3.15 as builder
run apk add make curl git
workdir /WORK
copy . .
run make cory
entrypoint ["/WORK/cory"]
cmd ["-serve"]