GG / Dockerfile
maylinejix's picture
Create Dockerfile
5b9009e verified
raw
history blame contribute delete
300 Bytes
FROM mcr.microsoft.com/playwright:v1.40.0-jammy
WORKDIR /app
RUN apt-get update && apt-get install -y \
python3 \
make \
g++ \
&& rm -rf /var/lib/apt/lists/*
COPY package*.json ./
RUN npm install
COPY . .
RUN npx playwright install chromium
EXPOSE 7860
CMD ["node", "index.js"]