File: Dockerfile

package info (click to toggle)
elvish 0.12%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,532 kB
  • sloc: python: 108; makefile: 94; sh: 72; xml: 9
file content (12 lines) | stat: -rw-r--r-- 236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
FROM golang:alpine

RUN apk update && \
    apk add --virtual build-deps make git

COPY . /go/src/github.com/elves/elvish
RUN make -C /go/src/github.com/elves/elvish get

RUN apk del --purge build-deps

WORKDIR /root
CMD /go/bin/elvish