Add command to copy package.json of root to server.Dockerfile (#2148)

This commit is contained in:
Navaneeth Pk 2022-02-07 00:34:48 +05:30 committed by GitHub
parent c6ae53bd4e
commit aac178eb55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,6 +32,9 @@ RUN apk add postgresql-client freetds
RUN mkdir -p /app
# copy npm scripts
COPY --from=builder /app/package.json ./app/package.json
# copy plugins dependencies
COPY --from=builder /app/plugins/dist ./app/plugins/dist
COPY --from=builder /app/plugins/client.js ./app/plugins/client.js