mirror of
https://github.com/FlipsideCrypto/fly-pr-review-apps.git
synced 2026-02-06 03:07:03 +00:00
10 lines
180 B
Docker
10 lines
180 B
Docker
FROM alpine
|
|
|
|
RUN apk add --no-cache curl jq
|
|
|
|
RUN curl -L https://fly.io/install.sh | FLYCTL_INSTALL=/usr/local sh
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|