An open API service indexing awesome lists of open source software.

https://github.com/alpine-docker/make

a simple container to run make command directly
https://github.com/alpine-docker/make

Last synced: about 1 year ago
JSON representation

a simple container to run make command directly

Awesome Lists containing this project

README

          

# make
A simple container to run make command directly, especially for https://3musketeers.io/

# Repo:

https://github.com/alpine-docker/make

# Docker image tags:

https://hub.docker.com/r/alpine/make/tags/

# Usage

```
$ cat docker-compose.yml
version: '3.4'
services:
alpine:
image: alpine/make
volumes:
- .:/opt/app
working_dir: /opt/app

$ cat Makefile
echo:
docker-compose run alpine make _echo

_echo:
echo 'Hello World!'

```
now you can easily run the build
```
$ make echo

docker-compose run alpine make _echo
echo 'Hello World!'
Hello World!
```

More examples at https://3musketeers.io/