Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
FROM node:lts AS BUILD_IMAGE
|
| 2 |
RUN apt-get update && apt-get install -y git
|
| 3 |
-
RUN git clone https://github.com/renqabs/gfa.git
|
| 4 |
WORKDIR /app
|
| 5 |
|
| 6 |
RUN yarn install --registry https://registry.npmmirror.com/ && yarn run build
|
|
|
|
| 1 |
FROM node:lts AS BUILD_IMAGE
|
| 2 |
RUN apt-get update && apt-get install -y git
|
| 3 |
+
RUN git clone https://github.com/renqabs/gfa.git /app
|
| 4 |
WORKDIR /app
|
| 5 |
|
| 6 |
RUN yarn install --registry https://registry.npmmirror.com/ && yarn run build
|