Build /
Build with a Dockerfile
You can build your projects on Northflank by supplying a Dockerfile in your repository.
A custom Dockerfile gives you full control over each step of the build process, including things like build arguments and custom base images. You must specify the location of the Dockerfile in your repository and the build context (root by default).
Select Dockerfile as the build type when creating your service, or change an existing service from the build options page.
See Docker's guide on writing Dockerfiles and the Dockerfile reference for more information.
If you have a single repository with multiple services, or your repository is structured so that your Dockerfile is not in the root, you can specify its location when creating or editing your services.
You can specify the location of the Dockerfile relative to the root of the repository. For example root: /Dockerfile
, or in a subdirectory: /directory/subdirectory/Dockerfile
.
Learn more about the Dockerfile .
You can create a more efficient Dockerfile that will build faster on subsequent builds by taking advantage of layer caching.
For this example, we'll look at the build stage from Northflank's AngularJS template Dockerfile .
The first time the image is built Northflank will run all the build steps in the Dockerfile and write each layer to the image registry. For each subsequent build it checks whether the files for that layer have changed. If there are no changes, the existing layers will be used to complete the build.
In this example the build step COPY package*.json ./
is nearer the start of the Dockerfile as its files are likely to change less frequently. This means it can be cached and used for future builds where the contents of package*.json
remain unchanged:
FROM node:lts-alpine as build-stage # layer unchanged, use cache
WORKDIR /app # layer unchanged, use cache
COPY package*.json ./ # layer unchanged, use cache
RUN npm install # layer unchanged, use cache
COPY . . # layer changed, run again
RUN npm run build # previous layer changed, run again
If you add another dependency to package.json
, all layers after it must be rebuilt:
FROM node:lts-alpine as build-stage # layer unchanged, use cache
WORKDIR /app # layer unchanged, use cache
COPY package*.json ./ # layer changed, run again
RUN npm install # previous layer changed, run again
COPY . . # previous layer changed, run again
RUN npm run build # previous layer changed, run again
The above example covers the Dockerfile-based build engines (Kaniko and Buildkit). The buildpack build backend can also benefit from caching. If caching is enabled, the build engine will try to cache and reuse build dependencies from previous builds.
If your Dockerfile contains multiple build stages you can specify the target stage by entering its name here.
For example, for a Dockerfile with the following stages:
FROM debian AS build-env
# ...
FROM alpine AS production-env
# ...
Specifying the target stage as build-env
will build an image using the commands up until, but not including the production-env
stage.
Read more in the Docker documentation .
Build from a Git repository
Start building from your linked Git repositories in minutes.
Inject build arguments
Pass secrets and configuration settings to your builds.
Run an image continuously
Deploy a built image as a continuously-running service.
Run an image once or on a schedule
Run an image manually or on a cron schedule.