mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
9a849b1bb7
* changing package to k3s-io Signed-off-by: Luther Monson <luther.monson@gmail.com> Co-authored-by: Derek Nola <derek.nola@suse.com>
12 lines
249 B
Docker
12 lines
249 B
Docker
ARG GOLANG=golang:1.17.5-alpine3.15
|
|
FROM ${GOLANG}
|
|
|
|
RUN apk -U --no-cache add bash jq
|
|
ENV DAPPER_SOURCE /go/src/github.com/k3s-io/k3s/
|
|
ENV HOME ${DAPPER_SOURCE}
|
|
WORKDIR ${DAPPER_SOURCE}
|
|
|
|
COPY ./scripts/test-mods /bin/
|
|
|
|
ENTRYPOINT ["/bin/test-mods"]
|