mirror of
https://github.com/cheveguerra/ws-api-node.git
synced 2026-04-17 11:26:11 +00:00
21 lines
281 B
Docker
21 lines
281 B
Docker
FROM node:12.22.0-buster
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y \
|
|
chromium \
|
|
libatk-bridge2.0-0 \
|
|
libxkbcommon0 \
|
|
libwayland-client0 \
|
|
libgtk-3-0 && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY package.json .
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD ["npm", "start"]
|