historical/RbxDiscordProxy.git/Dockerfile

7 lines
110 B
Docker
Raw Normal View History

2024-01-16 11:20:27 -06:00
FROM node:alpine
WORKDIR /Project
COPY . .
RUN npm install
RUN npm install -g typescript
RUN tsc
CMD npm start