drone-netlify/Dockerfile

12 lines
249 B
Docker

FROM node:19-slim
LABEL maintainer="internetmat <mat@mat.services>"
LABEL org.label-schema.description="Deploying to netlify with Drone CI"
RUN npm install -g netlify-cli
ADD script.sh /bin/
RUN chmod +x /bin/script.sh
ENTRYPOINT /bin/script.sh