DenReg/registry/Dockerfile

12 lines
243 B
Docker
Raw Normal View History

2020-07-31 20:39:58 +02:00
FROM hibas123.azurecr.io/deno
2020-07-28 14:39:54 +02:00
WORKDIR /app
ADD src /app/src
2020-10-14 02:58:00 +02:00
ADD public /app/public
2020-07-28 14:39:54 +02:00
RUN /usr/bin/deno cache --unstable src/registry.ts
2020-07-29 20:47:36 +02:00
VOLUME [ "/app/data" ]
2020-07-28 14:39:54 +02:00
ENTRYPOINT [ "/usr/bin/deno", "run", "-A", "--unstable", "/app/src/registry.ts" ]