hilingin/deployments/Dockerfile.opengraph
2026-03-21 11:18:44 +02:00

16 lines
293 B
Docker

# 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"]