T1ckbase
u
232b9c6
raw
history blame
346 Bytes
FROM denoland/deno:latest
# Create working directory
WORKDIR /app
ENV PLAYWRIGHT_BROWSERS_PATH=/app/node_modules/playwright/.local-browsers
# Copy source
COPY . .
RUN deno -A npm:playwright install --with-deps chromium
# Compile the main app
RUN deno cache main.ts
RUN chmod -R 777 /app
# Run the app
CMD ["deno", "run", "-A", "main.ts"]