Files
workavia-drive/twake/docker/twake-plugins/Dockerfile
T
montaghanmy 10fe6f78d1 feat: init
2023-03-23 11:03:16 +01:00

27 lines
268 B
Docker

# syntax=docker/dockerfile:1
FROM docker:20.10.17-dind-alpine3.16
RUN apk add --update nodejs-current npm bash curl
WORKDIR /usr/src/app
COPY plugins/ .
VOLUME /usr/src/app
RUN chmod -R +x scripts
RUN mv scripts/* /bin
RUN apk update
RUN apk add git