disseminate/Dockerfile
hexlocation's laptop (asiago) 7c89da0baf fix dependencies
2024-03-29 01:29:56 -04:00

9 lines
181 B
Docker

FROM node:21-alpine3.18
WORKDIR /tmp
COPY . /tmp
RUN yarn install --production
RUN yarn global add typescript
RUN tsc
RUN cp /tmp/build/* /app
WORKDIR /app
CMD ["node","index.js"]