9 lines
161 B
Docker
9 lines
161 B
Docker
FROM denoland/deno: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"]
|