docker/faas-cli/Dockerfile
2023-08-01 18:44:09 +03:00

6 lines
185 B
Docker

FROM docker:23.0.4-dind
ARG VERSION
RUN wget https://github.com/openfaas/faas-cli/releases/download/${VERSION}/faas-cli -O /usr/local/bin/faas-cli
RUN chmod +x /usr/local/bin/faas-cli