mirror of
https://github.com/sern-handler/linear-discord
synced 2026-06-06 01:16:56 +00:00
13 lines
120 B
Docker
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 |