mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-04 20:03:09 +02:00
9 lines
111 B
Docker
9 lines
111 B
Docker
FROM node:16
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY package*.json ./
|
|
|
|
RUN npm i --production
|
|
|
|
COPY . .
|
|
CMD ["npm", "start"] |