10 lines
183 B
Text
10 lines
183 B
Text
|
FROM golangci/golangci-lint:v1.23.6
|
||
|
|
||
|
RUN apt-get install git
|
||
|
|
||
|
COPY "entrypoint.sh" "/entrypoint.sh"
|
||
|
RUN chmod +x /entrypoint.sh
|
||
|
|
||
|
ENV GOFLAGS -mod=vendor
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|