xyter/Dockerfile
2022-10-19 00:24:45 +00:00

19 lines
219 B
Docker

FROM node:19
LABEL maintainer="xyter@zyner.org"
WORKDIR /build
COPY package* .
RUN npm install
COPY . .
RUN npx -y tsc
WORKDIR /app
RUN cp -r /build/build/* .
RUN cp -r /build/node_modules .
CMD [ "node", "." ]