Skip to content

Instantly share code, notes, and snippets.

View texastoastt's full-sized avatar

Texastoast_ texastoastt

  • Dallas, TX
View GitHub Profile
@texastoastt
texastoastt / Dockerfile
Created January 22, 2026 15:46 — forked from danopia/Dockerfile
ERCOT Frozen Grid 2021 - Metrics Reporters
FROM hayd/alpine-deno:1.10.1
WORKDIR /src/app
ADD deps.ts ./
RUN ["deno", "cache", "deps.ts"]
ADD *.ts ./
RUN ["deno", "cache", "mod.ts"]
ENTRYPOINT ["deno", "run", "--unstable", "--allow-net", "--allow-hrtime", "--allow-env", "--cached-only", "--no-check", "mod.ts"]