This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
legacy-musicbot/Dockerfile
2022-06-26 19:40:23 +02:00

6 lines
111 B
Docker

# syntax=docker/dockerfile:1
FROM node:16.10.0
WORKDIR /app
COPY ./ ./
RUN npm install
CMD ["node", "index.js"]