Skip to content

Commit 182b46a

Browse files
committed
fix: properly adjust Dockerfile
1 parent 92bb8f9 commit 182b46a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docker/app/Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@ FROM postgres:16.8
22

33
ENTRYPOINT []
44

5-
RUN apk --no-cache add openjdk21
6-
RUN apk --no-cache add "libxml2>=2.13.4-r5"
5+
RUN <<EOF
6+
set -eux
7+
apt -qq update
8+
apt -qq -y install temurin-21-jdk libxml2
9+
rm -rf /var/lib/apt/lists/*
10+
EOF
711

812
#############
913
### Tolgee #

0 commit comments

Comments
 (0)