Skip to content

Feat: Adding Cairo support #68 #72

Description

@Cevedale

To achieve this, you can modify your Dockerfile to include these packages.
Assuming you have a Dockerfile for your project, you can add the necessary package installation commands. For Example:

Use the base image with the desired version
FROM your_base_image:version

Install required packages
RUN apk --no-cache add cairo freetype-dev jpeg-dev

Additional steps for your Dockerfile...
Replace your_base_image:version with the actual base image and version you are using. The apk add command is used to install packages, and --no-cache is used to avoid caching the package index locally, saving space in the Docker image.

Rebuild your Docker image after making these changes:

docker build -t your_image_name:tag .

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions