ai-videoo / Dockerfile
Mxiaodang's picture
Create Dockerfile
80c6eff verified
raw
history blame contribute delete
198 Bytes
FROM denoland/deno:latest
# Create working directory
WORKDIR /app
# Copy source
COPY . .
# Compile the main app
RUN deno cache main.ts
# Run the app
CMD ["deno", "run", "--allow-net", "main.ts"]