# OpenGraph Dockerfile for hiling-opengraph FROM denoland/deno:alpine-1.41.0 WORKDIR /app # Copy all files COPY hiling-opengraph/ ./ # Cache dependencies RUN deno cache main.ts EXPOSE 1234 # Run the application CMD ["deno", "run", "--allow-net", "--allow-read", "--allow-env", "main.ts"]