Files
linear-discord/Dockerfile
2023-07-14 17:22:05 +00:00

13 lines
120 B
Docker

FROM node:alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN tsc --build
CMD node dist/index.js