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
Stanisław Dzioba c9bce8546c Update Dockerfile
2022-08-25 20:54:05 +02:00

8 lines
126 B
Docker

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