Reya-Discord-Bot / Dockerfile
Staticaliza's picture
Update Dockerfile
6a90745 verified
raw
history blame contribute delete
311 Bytes
FROM ubuntu:20.04
RUN apt-get update && \
apt-get install -y curl git && \
curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
apt-get install -y nodejs && \
rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["node", "index.js"]