1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-04-12 07:02:47 +02:00

add gcc image

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2016-02-03 11:41:04 -08:00
parent ec23b72123
commit 7fa961d0e3
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

7
gcc/Dockerfile Normal file

@ -0,0 +1,7 @@
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
gcc \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*