All checks were successful
Build and Push Deno Release Action / build-and-publish (push) Successful in 1m2s
9 lines
168 B
Docker
9 lines
168 B
Docker
FROM denoland/deno:alpine-2.3.1
|
|
|
|
RUN apk add --no-cache zip curl bash git
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|