API / Dockerfile
Puruu Puruu
h
e397c42
raw
history blame
338 Bytes
FROM mcr.microsoft.com/playwright:v1.53.2-jammy
WORKDIR /app
RUN apt-get update && apt-get install -y curl gnupg && \
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
apt-get install -y nodejs && \
npm install express axios && \
apt-get clean && rm -rf /var/lib/apt/lists/*
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]