Integrated with Python 3.11.9 and Nodejs 18.19.1 and gcc
192
FROM python:3.11-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update
&& apt-get install -y --no-install-recommends curl gnupg
&& curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
&& apt-get install -y nodejs
&& apt-get purge -y --auto-remove curl gnupg
&& apt-get clean
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
docker build --platform linux/amd64 -t python-node-base:amd64 -f python-node-base-amd64 .
docker build --platform linux/arm64 -t python-node-base:arm64 -f python-node-base-arm64 .
Content type
Image
Digest
sha256:8b5ba8e6c…
Size
163.6 MB
Last updated
about 2 years ago
docker pull 1030693123/python-node-base:amd64-gcc