Image with Go, Python and Perl.
Dockerfile
FROM golang:1.23
RUN apt-get update
RUN apt-get -y install python3
RUN apt-get -y install python3-setuptools
RUN apt-get -y install python3-pip
Build command:
docker build --tag ashtalk/python-go-perl:v2 -f Dockerfile .
Run Image:
$ docker run ashtalk/python-go-perl:v2 go version
go version go1.23.4 linux/arm64
$ docker run ashtalk/python-go-perl:v2 python3 --version
Python 3.11.2
$ docker run ashtalk/python-go-perl:v2 perl --version
This is perl 5, version 36, subversion 0 (v5.36.0) built for aarch64-linux-gnu-thread-multi
(with 53 registered patches, see perl -V for more detail)
Copyright 1987-2022, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl". If you have access to the
Internet, point your browser at https://www.perl.org/, the Perl Home Page.
Content type
Image
Digest
sha256:6cf31e564…
Size
316.5 MB
Last updated
over 1 year ago
docker pull ashtalk/python-go-perl:v2