Fix path issues
All checks were successful
CI / build (push) Successful in 40s

This commit is contained in:
Fabian Stamm 2023-11-28 16:50:22 +01:00
parent ae69bcd48e
commit e54429833b

View File

@ -11,8 +11,8 @@ docker:
COPY public /app/public COPY public /app/public
COPY deno.json /app/ COPY deno.json /app/
RUN deno cache --unstable src/registry.ts RUN /usr/bin/deno cache --unstable src/registry.ts
CMD [ "run", "-A", "--unstable", "/app/src/registry.ts" ] ENTRYPOINT [ "/usr/bin/deno", "run", "-A", "--unstable", "/app/src/registry.ts" ]
ARG EARTHLY_TARGET_TAG ARG EARTHLY_TARGET_TAG
ARG TAG=$EARTHLY_TARGET_TAG ARG TAG=$EARTHLY_TARGET_TAG