mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-12-27 12:24:30 +01:00
Apply feedback from Ticho
This commit is contained in:
parent
e5bac5e4f5
commit
c4733676cf
1 changed files with 3 additions and 4 deletions
|
@ -3,7 +3,7 @@ FROM docker.io/rust:1.58-bullseye AS builder
|
||||||
WORKDIR /usr/src/conduit
|
WORKDIR /usr/src/conduit
|
||||||
|
|
||||||
# Install required packages to build Conduit and it's dependencies
|
# 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 ==
|
# == 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 \
|
RUN apt update && apt -y install \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
iproute2 \
|
iproute2 \
|
||||||
wget
|
wget \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
RUN rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# Created directory for the database and media files
|
# Created directory for the database and media files
|
||||||
RUN mkdir -p /srv/conduit/.local/share/conduit
|
RUN mkdir -p /srv/conduit/.local/share/conduit
|
||||||
|
|
Loading…
Reference in a new issue