2 Commits
1.0.1 ... 1.0.3

Author SHA1 Message Date
e54429833b Fix path issues
All checks were successful
CI / build (push) Successful in 40s
2023-11-28 16:50:22 +01:00
ae69bcd48e The official image does not support arm and building it yourself is garbage, so some random image from docker hub is used. Great Work
All checks were successful
CI / build (push) Successful in 52s
2023-11-28 16:47:09 +01:00

View File

@ -1,7 +1,8 @@
VERSION 0.7
FROM docker.io/denoland/deno:alpine-1.38.3
FROM docker.io/runcitadel/deno:v1.29.3
WORKDIR /app
docker-multi:
BUILD --platform linux/amd64 --platform linux/arm64 +docker
@ -10,8 +11,8 @@ docker:
COPY public /app/public
COPY deno.json /app/
RUN deno cache --unstable src/registry.ts
CMD [ "run", "-A", "--unstable", "/app/src/registry.ts" ]
RUN /usr/bin/deno cache --unstable src/registry.ts
ENTRYPOINT [ "/usr/bin/deno", "run", "-A", "--unstable", "/app/src/registry.ts" ]
ARG EARTHLY_TARGET_TAG
ARG TAG=$EARTHLY_TARGET_TAG