chore: fleek should now upload images too
continuous-integration/drone/push Build is passing Details

master
Davide Polonio 2021-12-15 00:06:56 +01:00
parent f02b175245
commit 0863de23ec
2 changed files with 18 additions and 0 deletions

10
.fleek.json Normal file
View File

@ -0,0 +1,10 @@
{
"build": {
"image": "polpetta/fleek:latest",
"command": "git lfs install && git lfs pull && yarn && hugo",
"publicDir": "public",
"environment": {
"HUGO_DISABLELANGUAGES": "it"
}
}
}

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM fleek/hugo:node-16
LABEL MAINTAINER="Davide Polonio poloniodavide@gmail.com"
LABEL DESCRIPTION="Docker image for deploying website on IPFS via fleek"
RUN apt-get update \
&& apt-get install -y git-lfs \
&& rm -rf /var/lib/apt/lists/*