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
Text
Raw Permalink Normal View History

2023-01-29 19:15:31 +01:00
FROM docker.io/alpine:latest
2023-01-28 16:46:08 +01:00
2023-01-29 19:15:31 +01:00
RUN apk add curl && curl -L https://fly.io/install.sh | sh
ENV FLYCTL_INSTALL="/root/.fly"
ENV PATH="$FLYCTL_INSTALL/bin:$PATH"
2023-01-28 16:46:08 +01:00