summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
Diffstat (limited to 'docker')
-rw-r--r--docker/Dockerfile.appimage8
1 files changed, 4 insertions, 4 deletions
diff --git a/docker/Dockerfile.appimage b/docker/Dockerfile.appimage
index 8ee0bc8..3730487 100644
--- a/docker/Dockerfile.appimage
+++ b/docker/Dockerfile.appimage
@@ -4,10 +4,10 @@ ENV DEBIAN_FRONTEND=noninteractive
ENV GO_VERSION=1.23.0
ENV APPIMAGE_TOOL_VERSION=13
-RUN sed -i 's|http://archive.ubuntu.com|https://archive.ubuntu.com|g' /etc/apt/sources.list && \
- sed -i 's|http://security.ubuntu.com|https://security.ubuntu.com|g' /etc/apt/sources.list
-
-RUN apt-get update && apt-get install -y \
+RUN apt-get update && apt-get install -y ca-certificates && \
+ sed -i 's|http://archive.ubuntu.com|https://archive.ubuntu.com|g' /etc/apt/sources.list && \
+ sed -i 's|http://security.ubuntu.com|https://security.ubuntu.com|g' /etc/apt/sources.list && \
+ apt-get update && apt-get install -y \
wget curl git \
gcc g++ \
libgl1-mesa-dev \