nori/server.Dockerfile

8 lines
143 B
Docker
Raw Normal View History

2022-03-25 22:19:32 +00:00
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"]