Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +8 -2
Dockerfile
CHANGED
|
@@ -1,8 +1,14 @@
|
|
| 1 |
-
FROM golang:1.
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
-
RUN apk add --no-cache
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
RUN git clone https://github.com/asternic/wuzapi.git .
|
| 8 |
|
|
|
|
| 1 |
+
FROM golang:1.24-alpine
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
+
RUN apk add --no-cache \
|
| 6 |
+
git \
|
| 7 |
+
chromium \
|
| 8 |
+
nss \
|
| 9 |
+
freetype \
|
| 10 |
+
harfbuzz \
|
| 11 |
+
ca-certificates
|
| 12 |
|
| 13 |
RUN git clone https://github.com/asternic/wuzapi.git .
|
| 14 |
|