Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -1,7 +1,6 @@
|
|
| 1 |
FROM node:19-alpine AS base
|
| 2 |
RUN apk --no-cache add git
|
| 3 |
-
RUN git clone https://github.com/mckaywrigley/chatbot-ui.git
|
| 4 |
-
COPY chatbot-ui/* ../
|
| 5 |
WORKDIR /app
|
| 6 |
COPY package*.json ./
|
| 7 |
# ---- Dependencies ----
|
|
|
|
| 1 |
FROM node:19-alpine AS base
|
| 2 |
RUN apk --no-cache add git
|
| 3 |
+
RUN git clone https://github.com/mckaywrigley/chatbot-ui.git /app
|
|
|
|
| 4 |
WORKDIR /app
|
| 5 |
COPY package*.json ./
|
| 6 |
# ---- Dependencies ----
|