All Projects → Docker-Hub-frolvlad → docker-alpine-gcc

Docker-Hub-frolvlad / docker-alpine-gcc

Licence: MIT License
The smallest Docker image with C compiler (GCC) (130MB)

Programming Languages

Dockerfile
14818 projects

Projects that are alternatives of or similar to docker-alpine-gcc

gcc-0.9
The first available release, on March 22, 1987.
Stars: ✭ 30 (-37.5%)
Mutual labels:  gcc
docker-alpine-bash
Docker image with Bash and complete utils (busybox replacements) (10MB)
Stars: ✭ 25 (-47.92%)
Mutual labels:  alpine
cpp-compiler-options
Compilation options for different versions of Clang, GCC and MSVC. Provided a generator and different file formats (cmake, xmake, meson, premake5, bjam/b2, ...)
Stars: ✭ 19 (-60.42%)
Mutual labels:  gcc
mage2docker
A performant, replicable, and production-like alpine Magento 2 local development environment that leverages Docker.
Stars: ✭ 37 (-22.92%)
Mutual labels:  alpine
drupal-php
PHP docker container image for Drupal
Stars: ✭ 56 (+16.67%)
Mutual labels:  alpine
docker-geoserver
A basic docker geoserver image with JAI and marlin renderer running on tomcat
Stars: ✭ 17 (-64.58%)
Mutual labels:  alpine
docker-java-node
🐳 OpenJDK JRE or JDK (8,11 or 17) with Node.js 14 LTS (Fermium) or 16 LTS (Gallium) Docker image
Stars: ✭ 56 (+16.67%)
Mutual labels:  alpine
alpine-buildpack-deps
An attempt at a "buildpack-deps"-like Docker image with Alpine Linux
Stars: ✭ 30 (-37.5%)
Mutual labels:  alpine
docker-dolibarr
🐳 🐘 Docker image for Dolibarr.
Stars: ✭ 58 (+20.83%)
Mutual labels:  alpine
alpinist
Automatic Alpine Linux Package (apk) Repository Generation using AWS Lambda, S3 & SSM Parameter Store
Stars: ✭ 45 (-6.25%)
Mutual labels:  alpine
docker-jre
Lean JRE 8 Docker container
Stars: ✭ 25 (-47.92%)
Mutual labels:  alpine
container-amiga-gcc
Containerfile for AmigaOS Cross-Compiler Toolchain
Stars: ✭ 51 (+6.25%)
Mutual labels:  gcc
alpine-php-wordpress
Wordpress running on Alpine Linux [Docker]
Stars: ✭ 30 (-37.5%)
Mutual labels:  alpine
drupal
Vanilla Drupal docker container image
Stars: ✭ 19 (-60.42%)
Mutual labels:  alpine
rapide
WIP! do not use just yet - Opinionated Vite + Alpine.js starter PWA template
Stars: ✭ 15 (-68.75%)
Mutual labels:  alpine
docker flutter
Alpine Linux image for Flutter & Dart with helpful utils and web build support.
Stars: ✭ 33 (-31.25%)
Mutual labels:  alpine
dcos-k8s-rust-skaffold-demo
A demo of pipelining Rust application development to Kubernetes on DC/OS with Skaffold.
Stars: ✭ 40 (-16.67%)
Mutual labels:  alpine
hmg
💝 My personal Gentoo/Linux configuration backup files
Stars: ✭ 16 (-66.67%)
Mutual labels:  gcc
dockerfiles-nginx-auth-ldap
Nginx on Alpine with LDAP authentication module from kvspb/nginx-auth-ldap
Stars: ✭ 25 (-47.92%)
Mutual labels:  alpine
Bracmat
Programming language for symbolic computation with unusual combination of pattern matching features: Tree patterns, associative patterns and expressions embedded in patterns.
Stars: ✭ 42 (-12.5%)
Mutual labels:  gcc

Docker Stars Docker Pulls

C (GCC) Docker image

This image is based on Alpine Linux image, which is only a 5MB image, and contains C compiler (GCC package).

This image is only 130MB on disk.

NOTE: If you are looking for C++ (GCC) Docker image, there is one: frolvlad/alpine-gxx

Usage Example

$ echo -e '#include <stdio.h>\nint main() { printf("Hello World\\n"); }' > qq.c
$ docker run --rm -v `pwd`:/tmp frolvlad/alpine-gcc gcc --static /tmp/qq.c -o /tmp/qq

Once you have run these commands you will have qq executable in your current directory and if you execute it, you will get printed 'Hello World'!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].