mirror of
https://github.com/Team-Neptune/Korral-JS.git
synced 2025-02-17 02:18:39 +00:00
8 lines
165 B
Docker
8 lines
165 B
Docker
FROM node:latest
|
|
# Create the directory!
|
|
RUN mkdir -p /usr/src/korral
|
|
WORKDIR /usr/src/korral
|
|
# Our precious bot
|
|
COPY . /usr/src/korral
|
|
# Start me!
|
|
CMD ["npm start"] |