1
0
mirror of https://github.com/deStrO/eBot-docker.git synced 2025-12-10 03:22:49 +01:00
2023-10-13 12:11:40 +02:00

16 lines
306 B
Docker

FROM node:18
RUN apt-get update && apt-get install -y --force-yes git && apt-get clean
RUN npm install -g typescript ts-node
WORKDIR /app
RUN git clone https://github.com/deStrO/ebot-project.git
WORKDIR /app/ebot-project
RUN npm install
CMD ["ts-node", "src/logs-receiver", "./configs/config.json"]