mirror of
https://github.com/status-im/github-webhook-filter.git
synced 2026-08-31 02:31:08 +00:00
17 lines
225 B
Docker
17 lines
225 B
Docker
FROM denoland/deno:1.42.4
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
RUN chown -R deno:deno /app
|
|
|
|
USER deno
|
|
|
|
COPY deps.ts .
|
|
RUN deno cache deps.ts
|
|
|
|
COPY . .
|
|
RUN deno cache main.ts
|
|
|
|
CMD ["run", "--allow-env", "--allow-net=:8080,discord.com", "main.ts"]
|