mirror of
https://github.com/status-im/github-webhook-filter.git
synced 2025-01-25 13:09:54 +00:00
13 lines
201 B
Docker
13 lines
201 B
Docker
FROM denoland/deno:alpine-1.25.1
|
|
|
|
WORKDIR /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"]
|