Initial commit: Spark Platform with Cartesian SEO Engine
This commit is contained in:
26
directus/Dockerfile
Normal file
26
directus/Dockerfile
Normal file
@@ -0,0 +1,26 @@
|
||||
FROM directus/directus:11.1.0
|
||||
|
||||
USER root
|
||||
|
||||
# Install additional dependencies for image generation
|
||||
RUN apk add --no-cache \
|
||||
python3 \
|
||||
make \
|
||||
g++ \
|
||||
cairo-dev \
|
||||
jpeg-dev \
|
||||
pango-dev \
|
||||
giflib-dev \
|
||||
pixman-dev \
|
||||
pangomm-dev \
|
||||
libjpeg-turbo-dev \
|
||||
freetype-dev
|
||||
|
||||
USER node
|
||||
|
||||
# Copy extensions and scripts
|
||||
COPY --chown=node:node ./extensions /directus/extensions
|
||||
COPY --chown=node:node ./scripts /directus/scripts
|
||||
COPY --chown=node:node ./template /directus/template
|
||||
|
||||
WORKDIR /directus
|
||||
Reference in New Issue
Block a user