Skip to content
Snippets Groups Projects
Commit 8d2ab461 authored by Mate Farkas's avatar Mate Farkas
Browse files

apline:deb has been added.

parent 51599ebf
No related branches found
No related tags found
No related merge requests found
/*.deb
FROM alpine:latest
MAINTAINER Mate Farkas <mate.farkas@sch.hu>
RUN apk add --update-cache \
dpkg \
fakeroot \
tar
CMD fakeroot dpkg-deb --build /build/src/ /build/
TAG='matefarkas/alpine:deb'
all:
docker build --tag ${TAG} ${PWD}
test:
docker run --interactive --tty --rm ${TAG} ash || true
package:
docker run --rm --volume ${PWD}:/build/ ${TAG}
# matefarkas/alpine:deb
DEB packaging container.
Package: hello
Version: 1.0.0
Maintainer: Mate Farkas <mate.farkas@sch.hu>
Architecture: all
Description: Hello World
This package serves demo purposes.
#!/bin/bash
echo 'Hello World!'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment