cake_crm/Dockerfile
user-penguin ec832194a7
All checks were successful
continuous-integration/drone/push Build is passing
change image
2024-05-21 04:30:17 +07:00

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"]