Compare commits

...

2 Commits

Author SHA1 Message Date
god
e201219ad0 Merge pull request 'new update' (#1) from main into master
Reviewed-on: KeshavAnandCode/SkywardGradeChecker#1
2025-12-17 21:34:54 +00:00
e8730fafb0 new update 2025-12-17 15:34:04 -06:00
2 changed files with 26 additions and 0 deletions

2
.dockerignore Normal file
View File

@@ -0,0 +1,2 @@
node_modules

24
Dockerfile Normal file
View File

@@ -0,0 +1,24 @@
FROM mcr.microsoft.com/playwright:v1.43.1-jammy
# Install dependencies needed for bun installer (unzip & curl)
RUN apt-get update && apt-get install -y unzip curl && rm -rf /var/lib/apt/lists/*
# Install Bun and add it to PATH
RUN curl -fsSL https://bun.sh/install | bash && \
echo 'export PATH="/root/.bun/bin:$PATH"' >> ~/.bashrc
ENV PATH="/root/.bun/bin:$PATH"
ENV PORT=5565
WORKDIR /app
COPY . .
RUN bun install || npm install
RUN npx playwright install-deps
RUN npx playwright install
RUN bun add playwright-extra puppeteer-extra-plugin-stealth
#CMD ["bun", "index.ts"]