mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-06 03:46:39 +08:00
Fix build of Docker production image [SCI-8632] (#5701)
This commit is contained in:
parent
b459ed7b4b
commit
097d217a55
2 changed files with 5 additions and 3 deletions
|
@ -9,7 +9,7 @@ AllCops:
|
||||||
- "spec/**/*"
|
- "spec/**/*"
|
||||||
NewCops: enable
|
NewCops: enable
|
||||||
UseCache: false
|
UseCache: false
|
||||||
TargetRubyVersion: 2.6
|
TargetRubyVersion: 3.2
|
||||||
|
|
||||||
##################### Style ####################################
|
##################### Style ####################################
|
||||||
|
|
||||||
|
|
|
@ -65,14 +65,16 @@ RUN \
|
||||||
RUN \
|
RUN \
|
||||||
--mount=type=cache,target=/var/cache/apt,sharing=locked \
|
--mount=type=cache,target=/var/cache/apt,sharing=locked \
|
||||||
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
||||||
|
DEBIAN_FRONTEND=noninteractive \
|
||||||
apt-get update -qq && \
|
apt-get update -qq && \
|
||||||
apt-get install -y --no-install-recommends \
|
apt-get install -y --no-install-recommends \
|
||||||
|
default-jre-headless \
|
||||||
|
ca-certificates-java && \
|
||||||
|
apt-get install -y --no-install-recommends \
|
||||||
libjemalloc2 \
|
libjemalloc2 \
|
||||||
groff-base \
|
groff-base \
|
||||||
postgresql-client \
|
postgresql-client \
|
||||||
netcat-openbsd \
|
netcat-openbsd \
|
||||||
npm \
|
|
||||||
default-jre-headless \
|
|
||||||
poppler-utils \
|
poppler-utils \
|
||||||
librsvg2-2 \
|
librsvg2-2 \
|
||||||
libvips42 \
|
libvips42 \
|
||||||
|
|
Loading…
Add table
Reference in a new issue