Spaces:
Running
Running
itszubariel commited on
Commit ·
b50a6fd
1
Parent(s): 44b080a
change url for curl
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
FROM node:20-slim
|
| 2 |
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
|
| 3 |
ARG CACHEBUST=1780663429
|
| 4 |
-
RUN curl -L https://github.com/zbrlang/zbr/releases/latest/download/zbr -o /usr/local/bin/zbr && chmod +x /usr/local/bin/zbr
|
| 5 |
WORKDIR /app
|
| 6 |
COPY package*.json ./
|
| 7 |
RUN npm install
|
|
|
|
| 1 |
FROM node:20-slim
|
| 2 |
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
|
| 3 |
ARG CACHEBUST=1780663429
|
| 4 |
+
RUN curl -L https://github.com/zbrlang/zbr/releases/latest/download/zbr-linux-x64 -o /usr/local/bin/zbr && chmod +x /usr/local/bin/zbr
|
| 5 |
WORKDIR /app
|
| 6 |
COPY package*.json ./
|
| 7 |
RUN npm install
|