A super small Docker image based on Alpine Linux.
- [`latest`, `3.4`](https://github.com/azukiapp/docker-alpine/blob/v3.4/3.4/Dockerfile) - [`3.3`](https://github.com/azukiapp/docker-alpine/blob/v3.3/3.3/Dockerfile) - [`3.2`](https://github.com/azukiapp/docker-alpine/blob/v3.2/3.2/Dockerfile)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,
},
});
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.