All checks were successful
continuous-integration/drone/push Build is passing
5 lines
162 B
Docker
5 lines
162 B
Docker
FROM golang:1.22
|
|
RUN apk add --no-cache ca-certificates
|
|
COPY cake_crm /usr/local/bin/cake_crm
|
|
RUN chmod +x /usr/local/bin/cake_crm
|
|
CMD ["/usr/local/bin/cake_crm"] |