Mason
Mason
+1 to this. also imports like these can't be located (@openzeppelin) without remapping them to a directory that contains the solidity files ``` import { SafeERC20, SafeMath, IERC20, Address }...
@pascalandy then how does one modify the content of the volume(say to add s3 storage adapter)? At the moment doing this doesn't work ``` FROM ghost:3.12.0 WORKDIR /var/lib/ghost RUN npm...
> I don't know. But here is where you can know :) > https://ghost.org/docs/concepts/storage-adapters/ Am I missing something? I definitely checked that page before posting. It doesn't talk much about...
For anyone wondering, the following dockerfile worked for me ``` FROM ghost:3.12.0 WORKDIR /var/lib/ghost RUN npm install ghost-storage-adapter-s3 \ && mkdir -p ./content.orig/adapters/storage \ && cp -vr ./node_modules/ghost-storage-adapter-s3 ./content.orig/adapters/storage/ghost-s3 ```...