historical/RbxDiscordProxy.git/Dockerfile

7 lines
110 B
Docker
Raw Normal View History

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