mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-20 19:30:41 -05:00
added verification step
This commit is contained in:
@@ -129,11 +129,24 @@ FROM base AS runner
|
||||
RUN npm install -g corepack@latest
|
||||
RUN corepack enable
|
||||
|
||||
COPY --from=edge-packages /edge-packages/lib /usr/lib
|
||||
COPY --from=edge-packages /edge-packages/bin /usr/bin
|
||||
COPY --from=edge-packages /edge-packages/etc /etc
|
||||
COPY --from=source-builder /built-libs /
|
||||
|
||||
RUN apk add --no-cache curl \
|
||||
&& apk add --no-cache supercronic \
|
||||
&& addgroup -S nextjs \
|
||||
&& adduser -S -u 1001 -G nextjs nextjs
|
||||
|
||||
RUN echo "Verifying package versions:" && \
|
||||
openssl version | grep "3.5.0" && \
|
||||
sqlite3 --version | grep "3.49.1" && \
|
||||
pkg-config --modversion glib-2.0 | grep "2.84.1" && \
|
||||
xml2-config --version | grep "2.14.1" && \
|
||||
echo "All package versions verified successfully!"
|
||||
|
||||
|
||||
WORKDIR /home/nextjs
|
||||
|
||||
# Ensure no write permissions are assigned to the copied resources
|
||||
|
||||
Reference in New Issue
Block a user