Skip to content

Commit

Permalink
openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
sinamics committed Aug 20, 2024
1 parent 424e361 commit 09b93c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,9 @@ RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
RUN apt update && apt install -y curl wget sudo postgresql-client && apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN wget http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_amd64.deb
RUN sudo dpkg -i libssl1.1_1.1.1n-0+deb10u6_amd64.deb
RUN wget http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb10u6_amd64.deb && \
dpkg -i libssl1.1_1.1.1n-0+deb10u6_amd64.deb && \
rm libssl1.1_1.1.1n-0+deb10u6_amd64.deb

# need to install these package for seeding the database
RUN npm install @prisma/client @paralleldrive/cuid2
Expand Down

0 comments on commit 09b93c4

Please sign in to comment.