This repository has been archived on 2023-11-19. You can view files and clone it, but cannot push or open issues or pull requests.
flyctl-deploy/Dockerfile

8 lines
160 B
Docker

FROM docker.io/alpine:latest
RUN apk add curl && curl -L https://fly.io/install.sh | sh
ENV FLYCTL_INSTALL="/root/.fly"
ENV PATH="$FLYCTL_INSTALL/bin:$PATH"