Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
fix: permissions on registry.Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenptrs committed Jul 25, 2020
1 parent c25591b commit e0de8f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions registry.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ COPY lock.json /functions
ADD packages /functions/packages

RUN /functions/denofn.sh cache reload
RUN deno cache ./packages/registry/src/index.ts
RUN deno cache --unstable ./packages/registry/src/index.ts

ENTRYPOINT ["deno", "run", "--unstable", "--allow-read=/functions", "--allow-write=/functions", "--allow-run", "./packages/registry/src/index.ts"]
ENTRYPOINT ["deno", "run", "--unstable", "--allow-read=/functions", "--allow-write=/functions", "--allow-net", "./packages/registry/src/index.ts"]

0 comments on commit e0de8f6

Please sign in to comment.