6 lines
147 B
Plaintext
6 lines
147 B
Plaintext
|
FROM alpine:latest AS commondeps
|
||
|
RUN apk update \
|
||
|
&& apk add cmake python3-dev py3-pip gcc g++ wget git make libc-dev \
|
||
|
&& adduser -D qpmsbuild
|
||
|
|