drone-netlify/Dockerfile

12 lines
249 B
Docker
Raw Normal View History

2022-10-20 21:58:05 +00:00
FROM node:19-slim
2018-02-15 20:08:23 +00:00
2022-10-20 21:58:05 +00:00
LABEL maintainer="internetmat <mat@mat.services>"
2018-02-15 20:08:23 +00:00
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