infrastructure/apps/ghostcms/Dockerfile
Peter Kurfer c592010f90
All checks were successful
continuous-integration/drone/push Build is passing
feat: prepare GhostCMS
2023-11-01 19:47:08 +01:00

11 lines
No EOL
250 B
Docker

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