softplayer-dart-proto/Containerfile

10 lines
288 B
Plaintext
Raw Normal View History

2024-03-19 21:17:54 +00:00
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" ]