mirror of
https://github.com/anticitizn/creamlinux.git
synced 2025-12-06 05:25:44 -05:00
10 lines
232 B
Docker
10 lines
232 B
Docker
FROM ubuntu:20.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt update \
|
|
&& apt upgrade -y \
|
|
&& apt install -y --no-install-recommends \
|
|
build-essential gcc-multilib g++-multilib cmake git zip
|
|
|
|
WORKDIR /usr/src/creamlinux |