Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
FROM ubuntu:latest
|
| 2 |
|
| 3 |
-
# Instal dependensi yang diperlukan
|
| 4 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 5 |
curl \
|
| 6 |
unzip \
|
| 7 |
iproute2 \
|
|
|
|
|
|
|
| 8 |
&& rm -rf /var/lib/apt/lists/*
|
| 9 |
|
| 10 |
# Unduh dan instal Xray (yang mendukung VLESS)
|
|
|
|
| 1 |
FROM ubuntu:latest
|
| 2 |
|
| 3 |
+
# Instal dependensi yang diperlukan dan update CA certificates
|
| 4 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 5 |
curl \
|
| 6 |
unzip \
|
| 7 |
iproute2 \
|
| 8 |
+
ca-certificates \
|
| 9 |
+
&& update-ca-certificates \
|
| 10 |
&& rm -rf /var/lib/apt/lists/*
|
| 11 |
|
| 12 |
# Unduh dan instal Xray (yang mendukung VLESS)
|