Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SpectrumIM/spectrum2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvitalyster <vitalyster@gmail.com>2022-02-10 05:22:20 +0300
committerGitHub <noreply@github.com>2022-02-10 05:22:20 +0300
commitd5e8851daec94a43f7d70627df1ea44b230a44e0 (patch)
tree805cf3041619229915e5376611caefeaecd46000
parent389d7797425b3669bbc36d5208f0a1b38ed14515 (diff)
Update Dockerfile
Minor changes to reset cache
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index bcbfd69a..4fb49307 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -145,7 +145,7 @@ ARG DEBIAN_FRONTEND=noninteractive
ARG APT_LISTCHANGES_FRONTEND=none
RUN apt-get update -qq
-RUN apt-get install --no-install-recommends -y curl ca-certificates gnupg1 libmarkdown2
+RUN apt-get install --no-install-recommends -y curl ca-certificates gnupg1
RUN echo "deb https://packages.spectrum.im/spectrum2/ bullseye main" | tee -a /etc/apt/sources.list
RUN curl -fsSL https://packages.spectrum.im/packages.key | apt-key add -
@@ -165,7 +165,7 @@ COPY --from=staging /tmp/out/* /usr/
COPY --from=staging spectrum2/packaging/docker/run.sh /run.sh
COPY --from=staging spectrum2/packaging/debian/*.deb /tmp/
-RUN apt install --no-install-recommends -y /tmp/*.deb
+RUN apt install --no-install-recommends -y /tmp/*.deb libmarkdown2
RUN rm -rf /tmp/*.deb