From 7c09fe11d907b2ea8e5ba0325ba7cd9c09cacce0 Mon Sep 17 00:00:00 2001 From: Charles Morgan Date: Mon, 15 Nov 2021 03:50:55 -0500 Subject: [PATCH] Add cmake/make to python (#21) Adds make and cmake to python images. some pip packages like PyNaCl builds when downloaded, and servers fail due to make missing --- python/3.7/Dockerfile | 2 +- python/3.8/Dockerfile | 2 +- python/3.9/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python/3.7/Dockerfile b/python/3.7/Dockerfile index e03933d..02be4ee 100644 --- a/python/3.7/Dockerfile +++ b/python/3.7/Dockerfile @@ -27,7 +27,7 @@ LABEL author="Matthew Penner" maintainer="matthew@pterodactyl.io" LABEL org.opencontainers.image.source="https://github.com/pterodactyl/yolks" LABEL org.opencontainers.image.licenses=MIT -RUN apk add --update --no-cache ca-certificates curl ffmpeg g++ gcc git openssl sqlite tar tzdata \ +RUN apk add --update --no-cache cmake make ca-certificates curl ffmpeg g++ gcc git openssl sqlite tar tzdata \ && adduser -D -h /home/container container USER container diff --git a/python/3.8/Dockerfile b/python/3.8/Dockerfile index cae484e..c254b46 100644 --- a/python/3.8/Dockerfile +++ b/python/3.8/Dockerfile @@ -27,7 +27,7 @@ LABEL author="Matthew Penner" maintainer="matthew@pterodactyl.io" LABEL org.opencontainers.image.source="https://github.com/pterodactyl/yolks" LABEL org.opencontainers.image.licenses=MIT -RUN apk add --update --no-cache ca-certificates curl ffmpeg g++ gcc git openssl sqlite tar tzdata \ +RUN apk add --update --no-cache cmake make ca-certificates curl ffmpeg g++ gcc git openssl sqlite tar tzdata \ && adduser -D -h /home/container container USER container diff --git a/python/3.9/Dockerfile b/python/3.9/Dockerfile index 7c96005..99d38c1 100644 --- a/python/3.9/Dockerfile +++ b/python/3.9/Dockerfile @@ -27,7 +27,7 @@ LABEL author="Matthew Penner" maintainer="matthew@pterodactyl.io" LABEL org.opencontainers.image.source="https://github.com/pterodactyl/yolks" LABEL org.opencontainers.image.licenses=MIT -RUN apk add --update --no-cache ca-certificates curl ffmpeg g++ gcc git openssl sqlite tar tzdata \ +RUN apk add --update --no-cache cmake make ca-certificates curl ffmpeg g++ gcc git openssl sqlite tar tzdata \ && adduser -D -h /home/container container USER container