8 lines
329 B
Plaintext
8 lines
329 B
Plaintext
ARG ARCH
|
|
FROM harbor.colben.cn/general/ubuntu$ARCH:22.04
|
|
MAINTAINER Colben colbenlee@gmail.com
|
|
RUN apt update \
|
|
&& apt -y install build-essential python3-pip python3-dev \
|
|
&& rm -rf /var/lib/apt/lists/* /var/lib/dpkg/info/* /var/cache/apt/archives
|
|
|