xyter/Dockerfile
Joshua Schmitt fbcbf8545b fix: 🚀 fix and rewrote docker stuff
I reworked the docker files and added docker support for the new config system.

The old config system is no longer working
2022-07-05 16:07:02 +00:00

16 lines
No EOL
162 B
Docker

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