Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
@@ -8,12 +8,10 @@ COPY . /app
|
|
8 |
|
9 |
RUN corepack enable
|
10 |
RUN apt-get update && \
|
11 |
-
apt-get install -y python3 build-essential
|
12 |
|
13 |
RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
|
14 |
pnpm install --prod --frozen-lockfile
|
15 |
-
# Update this line to pull the latest version (10.5)
|
16 |
-
RUN git clone -b https://github.com/imputnet/cobalt
|
17 |
|
18 |
RUN pnpm deploy --filter=@imput/cobalt-api --prod /prod/api
|
19 |
|
|
|
8 |
|
9 |
RUN corepack enable
|
10 |
RUN apt-get update && \
|
11 |
+
apt-get install -y python3 build-essential
|
12 |
|
13 |
RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
|
14 |
pnpm install --prod --frozen-lockfile
|
|
|
|
|
15 |
|
16 |
RUN pnpm deploy --filter=@imput/cobalt-api --prod /prod/api
|
17 |
|