softplayer-dart-proto/Containerfile

10 lines
288 B
Docker

FROM alpine:3.19.1
RUN apk update
RUN apk add --no-cache git make musl-dev protobuf protobuf-dev
RUN apk add --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/ dart dart-sdk
ENV PATH /root/.pub-cache/bin:$PATH
RUN dart pub global activate protoc_plugin
CMD [ "protoc -v" ]