https://github.com/deployable/docker-debian-build
Debian image with build tools
https://github.com/deployable/docker-debian-build
apt build deployable docker docker-debian
Last synced: 10 months ago
JSON representation
Debian image with build tools
- Host: GitHub
- URL: https://github.com/deployable/docker-debian-build
- Owner: deployable
- Created: 2016-11-30T23:22:24.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-10T11:19:50.000Z (over 8 years ago)
- Last Synced: 2025-02-09T20:28:09.253Z (about 1 year ago)
- Topics: apt, build, deployable, docker, docker-debian
- Language: Roff
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Debian Build Image
A Debian image that includes the standard build tools.
Avoids setting up build tools for all source installs.
## Usage
FROM deployable/debian-build:8
RUN set -uex; \
cd /tmp; \
curl https://app.com/release/1.2.3.tar.gz | tar -xvf -; \
cd 1.2.3; \
./configure; \
make install; \
rm -rf /tmp/1.2.3