File size: 249 Bytes
7d61f94 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Use official Deno image
FROM denoland/deno:latest
# Set working directory
WORKDIR /app
# Copy the local code to the container
COPY . .
# Expose port 8080
EXPOSE 7860
# Define the startup command
CMD ["deno", "run", "--allow-net", "server.ts"]
|