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
- Host: GitHub
- URL: https://github.com/alpine-docker/make
- Owner: alpine-docker
- License: mit
- Created: 2018-07-31T03:33:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-08-04T22:31:12.000Z (almost 6 years ago)
- Last Synced: 2025-01-25T15:27:52.545Z (over 1 year ago)
- Language: Dockerfile
- Size: 3.91 KB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/