mirror of
https://github.com/cloudmaker97/FS25-Discord-Bot.git
synced 2025-12-06 00:18:34 +00:00
11 lines
No EOL
194 B
Docker
11 lines
No EOL
194 B
Docker
FROM node:latest
|
|
LABEL name="LS25-Discord-Bot"
|
|
LABEL authors="Dennis Heinrich"
|
|
|
|
# Copy the source files
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN npm install
|
|
|
|
CMD ["npm", "start"]
|
|
ENTRYPOINT ["npm", "start"] |