xyter/Dockerfile
2022-07-05 21:56:46 +02:00

19 lines
No EOL
218 B
Docker

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