Skip to content

Commit

Permalink
Add new images
Browse files Browse the repository at this point in the history
  • Loading branch information
bhuisgen committed Oct 30, 2016
1 parent 53f7485 commit 3563255
Show file tree
Hide file tree
Showing 14 changed files with 1,324 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ SUBDIRS = \
alpine-base-consul \
alpine-build \
alpine-build-make \
alpine-build-make-gcc \
alpine-build-make-terraform \
alpine-build-maven \
alpine-build-npm \
Expand All @@ -21,7 +22,9 @@ SUBDIRS = \
alpine-mariadb \
alpine-nginx \
alpine-nodejs \
alpine-perl \
alpine-php \
alpine-python \
alpine-postgresql \
alpine-rabbitmq \
alpine-redis \
Expand Down
3 changes: 3 additions & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ SUBDIRS = \
alpine-base-consul \
alpine-build \
alpine-build-make \
alpine-build-make-gcc \
alpine-build-make-terraform \
alpine-build-maven \
alpine-build-npm \
Expand All @@ -300,7 +301,9 @@ SUBDIRS = \
alpine-mariadb \
alpine-nginx \
alpine-nodejs \
alpine-perl \
alpine-php \
alpine-python \
alpine-postgresql \
alpine-rabbitmq \
alpine-redis \
Expand Down
10 changes: 10 additions & 0 deletions alpine-build-make-gcc/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM bhuisgen/alpine-build:latest
MAINTAINER Boris HUISGEN <bhuisgen@hbis.fr>

RUN apk add --update gcc && \
rm -rf /var/cache/apk/*

ENTRYPOINT ["/bin/sh"]
CMD []

WORKDIR /usr/local/build
10 changes: 10 additions & 0 deletions alpine-build-make-gcc/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
IMAGE = bhuisgen/alpine-build-make-gcc

clean-local:
docker rmi $(IMAGE):$(TAG) $(CLEAN_OPTIONS) || true

build-local:
docker build -t $(IMAGE):$(TAG) $(BUILD_OPTIONS) .

pull-local:
docker pull $(IMAGE):$(TAG) $(PULL_OPTIONS)
Loading

0 comments on commit 3563255

Please sign in to comment.