mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
363 B
12 lines
363 B
FROM golang:1-alpine |
|
|
|
ENV GIT_TERMINAL_PROMPT=0 |
|
RUN apk add --no-cache git |
|
RUN go get golang.org/x/tools/cmd/goimports |
|
RUN go get github.com/01-edu/z01 |
|
COPY --from=mkcert-ca . /usr/local/share/ca-certificates |
|
RUN update-ca-certificates |
|
COPY entrypoint.sh /usr/local/bin |
|
COPY . src |
|
RUN go install rc prog/... |
|
ENTRYPOINT ["/bin/sh", "/usr/local/bin/entrypoint.sh"]
|
|
|