infrastructure/apps/ghostcms/Dockerfile

11 lines
250 B
Text
Raw Normal View History

2023-10-31 18:14:58 +00:00
ARG GHOST_IMAGE_TAG=5.71.0-alpine
FROM docker.io/node:18-alpine AS s3-storage-adapter
WORKDIR /s3
RUN npm install ghos3
FROM docker.io/ghost:${GHOST_IMAGE_TAG}
COPY --from=s3-storage-adapter /s3/node_modules/ghos3/* ./content/adapters/storage/s3