Template
1
0

feat: add cerbos access control

This commit is contained in:
2025-09-19 03:28:00 +02:00
parent d322138502
commit 74a9426bcc
41 changed files with 999 additions and 821 deletions

View File

@@ -1,6 +1,8 @@
FROM denoland/deno:2.3.1
FROM denoland/deno:2.5.1
ENV TZ=UTC
ENV PORT=8370
EXPOSE 8370
WORKDIR /app
@@ -10,10 +12,6 @@ COPY relay/ ./relay/
COPY .npmrc .
COPY deno-docker.json ./deno.json
RUN chown -R deno:deno /app/
USER deno
RUN deno install --allow-scripts
CMD ["sh", "-c", "deno run --allow-all ./api/.tasks/migrate.ts && deno run --allow-all ./api/server.ts"]