FROM golang:latest RUN apk add --no-cache pandoc WORKDIR /var/www/cpolis COPY . . RUN go build -o cpolis cmd/main.go CMD ["./cpolis"]