azukiapp/alpine
A super small Docker image based on Alpine Linux by Azuki - http://azk.io
1.7K
A super small Docker image based on Alpine Linux.
azk
Example of using that image with azk:
/**
* Documentation: http://docs.azk.io/Azkfile.js
*/
// Adds the systems that shape your system
systems({
"my-app": {
// More info about alpine image: http://images.azk.io/#/alpine?from=images-azkfile-alpine
image: {"docker": "azukiapp/alpine:3.4"},
// Steps to execute before running instances
provision: [
// "./script.sh",
],
mounts: {
'/azk/#{manifest.dir}': path("."),
},
workdir: "/azk/#{manifest.dir}",
// command: "# command to run app. i.g.: `./start.sh`",
wait: false,
},
});
Dockerfile
Install postgresql-client
:
# Dockerfile
FROM azukiapp/alpine:3.4
RUN apk add --update postgresql-client \
&& rm -rf /var/cache/apk/* /var/tmp/*
CMD ["psql"]
To more packages, access alpine packages
Azuki Dockerfiles distributed under the Apache License.
docker pull azukiapp/alpine