Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -13,6 +13,8 @@ RUN unzip -q emperor-bot.zip -d temp \
|
|
| 13 |
|
| 14 |
# Copy package.json and package-lock.json
|
| 15 |
COPY package*.json ./
|
|
|
|
|
|
|
| 16 |
|
| 17 |
# Install dependencies
|
| 18 |
RUN npm install
|
|
|
|
| 13 |
|
| 14 |
# Copy package.json and package-lock.json
|
| 15 |
COPY package*.json ./
|
| 16 |
+
# Install TypeScript globally
|
| 17 |
+
RUN npm install -g typescript
|
| 18 |
|
| 19 |
# Install dependencies
|
| 20 |
RUN npm install
|