mirror of
https://github.com/muerwre/vk-tg-bot.git
synced 2025-04-24 22:46:41 +07:00
16 lines
207 B
Docker
16 lines
207 B
Docker
FROM node:lts-fermium
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./package.json .
|
|
COPY ./yarn.lock .
|
|
RUN yarn
|
|
|
|
COPY . .
|
|
RUN yarn build
|
|
|
|
WORKDIR /app/dist
|
|
COPY ./docker/wait-for-it.sh .
|
|
|
|
EXPOSE ${EXPOSE}
|
|
CMD ["node", "./index.js"]
|