historical/RbxDiscordProxy.git/Dockerfile
2024-01-16 11:20:27 -06:00

7 lines
No EOL
110 B
Docker

FROM node:alpine
WORKDIR /Project
COPY . .
RUN npm install
RUN npm install -g typescript
RUN tsc
CMD npm start