11 lines
250 B
Text
11 lines
250 B
Text
|
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
|