API / Dockerfile
Puruu Puruu
8065f56
raw
history blame contribute delete
348 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 form-data && \
apt-get clean && rm -rf /var/lib/apt/lists/*
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]