xyter/Dockerfile
2022-09-09 07:55:09 +00:00

19 lines
219 B
Docker

FROM node:18
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", "." ]