mirror of
https://github.com/sern-handler/linear-discord
synced 2026-06-06 01:16:56 +00:00
14 lines
144 B
Docker
14 lines
144 B
Docker
FROM node:alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN npm i -g typescript
|
|
RUN tsc --build
|
|
|
|
CMD node dist/index.js |