Sign inSign up

1030693123/python-node-base

By 1030693123

Updated about 2 years ago
Archived

Integrated with Python 3.11.9 and Nodejs 18.19.1 and gcc

Image
0

192

1030693123/python-node-base repository overview

Integrated with Python 3.11.9 and Nodejs 18.19.1, available in two versions, arm64 (for Apple chips) and amd64

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 .

Tag summary

Content type

Image

Digest

sha256:8b5ba8e6c

Size

163.6 MB

Last updated

about 2 years ago

docker pull 1030693123/python-node-base:amd64-gcc