summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJonas Zohren <git-pbkyr@jzohren.de>2022-02-02 13:35:15 +0000
committerJonas Zohren <git-pbkyr@jzohren.de>2022-02-02 13:35:15 +0000
commitc4733676cf16267ffbb0b348848e87a7d103cf37 (patch)
tree91372390901d7c642868c986f832fa6e3b9a8108 /Dockerfile
parente5bac5e4f53fa3e6565cca96b687dc8ff976f7f0 (diff)
downloadconduit-c4733676cf16267ffbb0b348848e87a7d103cf37.zip
Apply feedback from Ticho
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 0da4aac..b631f29 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,7 +3,7 @@ FROM docker.io/rust:1.58-bullseye AS builder
WORKDIR /usr/src/conduit
# Install required packages to build Conduit and it's dependencies
-RUN apt update && apt -y install libclang-11-dev
+RUN apt update && apt -y install libclang-dev
# == Build dependencies without our own code separately for caching ==
#
@@ -45,9 +45,8 @@ ENV CONDUIT_CONFIG="/srv/conduit/conduit.toml" \
RUN apt update && apt -y install \
ca-certificates \
iproute2 \
- wget
-
-RUN rm -rf /var/lib/apt/lists/*
+ wget \
+ && rm -rf /var/lib/apt/lists/*
# Created directory for the database and media files
RUN mkdir -p /srv/conduit/.local/share/conduit