Good afternoon
I'm trying to build docker plugin binaries but I'm getting errors, I'm not good with Make so I tried to find a ready solution
My docker file
FROM alpine:latest
RUN apk update && apk add make g++ bash go curl git
RUN wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.52.2
ENTRYPOINT ["bash"]
When the container is finished building, I run the command:
docker run
-v ${SYSTEM_DIR}\mattermost-plugin-apps\:/opt/app
-it --name mattermost_app_gcal
--entrypoint /bin/bash mattermost-app-gcal
Go to plugin directory
cd opt/app
And I execute the command
make all
I am getting an error in the process
Good afternoon
I'm trying to build docker plugin binaries but I'm getting errors, I'm not good with Make so I tried to find a ready solution
My docker file
When the container is finished building, I run the command:
Go to plugin directory
cd opt/appAnd I execute the command
make allI am getting an error in the process