T1ckbase
u
6f02bab
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 . .
# Compile the main app
RUN deno cache main.ts
RUN deno -A npm:playwright install --with-deps chromium
RUN chmod -R 777 /app
# Run the app
CMD ["deno", "run", "-A", "main.ts"]