Skip to main content
added 10 characters in body
Source Link
Kusalananda
  • 355.8k
  • 42
  • 735
  • 1.1k

The python:3.10 base image does not have inkscape installed by default. To create a Docker image with inkscape, based on python:3.10, you would use a Dockerfile containing the statements

FROM python:3.10
RUN apt-get update && apt-get install -y-assume-yes --no-install-recommends inkscape

Note that the string after the RUN keyword is a Unix shell command, so the capitalisation is significant.

The python:3.10 base image does not have inkscape installed by default. To create a Docker image with inkscape, based on python:3.10, you would use a Dockerfile containing the statements

FROM python:3.10
RUN apt-get update && apt-get install -y --no-install-recommends inkscape

Note that the string after the RUN keyword is a Unix shell command, so the capitalisation is significant.

The python:3.10 base image does not have inkscape installed by default. To create a Docker image with inkscape, based on python:3.10, you would use a Dockerfile containing the statements

FROM python:3.10
RUN apt-get update && apt-get install --assume-yes --no-install-recommends inkscape

Note that the string after the RUN keyword is a Unix shell command, so the capitalisation is significant.

Avoid installing weak dependencies.
Source Link
Stephen Kitt
  • 481.4k
  • 60
  • 1.2k
  • 1.4k

The python:3.10 base image does not have inkscape installed by default. To create a Docker image with inkscape, based on python:3.10, you would use a Dockerfile containing the statements

FROM python:3.10
RUN apt-get update && apt-get install -y --no-install-recommends inkscape

Note that the string after the RUN keyword is a Unix shell command, so the capitalisation is significant.

The python:3.10 base image does not have inkscape installed by default. To create a Docker image with inkscape, based on python:3.10, you would use a Dockerfile containing the statements

FROM python:3.10
RUN apt-get update && apt-get install -y inkscape

Note that the string after the RUN keyword is a Unix shell command, so the capitalisation is significant.

The python:3.10 base image does not have inkscape installed by default. To create a Docker image with inkscape, based on python:3.10, you would use a Dockerfile containing the statements

FROM python:3.10
RUN apt-get update && apt-get install -y --no-install-recommends inkscape

Note that the string after the RUN keyword is a Unix shell command, so the capitalisation is significant.

Source Link
Kusalananda
  • 355.8k
  • 42
  • 735
  • 1.1k

The python:3.10 base image does not have inkscape installed by default. To create a Docker image with inkscape, based on python:3.10, you would use a Dockerfile containing the statements

FROM python:3.10
RUN apt-get update && apt-get install -y inkscape

Note that the string after the RUN keyword is a Unix shell command, so the capitalisation is significant.