mirror of
https://github.com/MeiK2333/river.git
synced 2025-11-04 14:49:40 +08:00
12 lines
257 B
Docker
12 lines
257 B
Docker
FROM ubuntu:focal
|
|
|
|
RUN apt-get update -y
|
|
|
|
RUN apt-get install -y gcc g++
|
|
|
|
RUN apt-get install -y software-properties-common && \
|
|
add-apt-repository -y ppa:deadsnakes/ppa && \
|
|
apt-get install -y python3.8 python3-pip
|
|
|
|
RUN rm -rf /var/lib/apt/lists/*
|