@whyour/qinglong 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docker/Dockerfile +3 -3
- package/package.json +1 -1
package/docker/Dockerfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
FROM node:18-slim as nodebuilder
|
|
1
|
+
FROM node:18-slim-bullseye as nodebuilder
|
|
2
2
|
|
|
3
|
-
FROM python:3.10-slim as builder
|
|
3
|
+
FROM python:3.10-slim-bullseye as builder
|
|
4
4
|
COPY package.json .npmrc pnpm-lock.yaml /tmp/build/
|
|
5
5
|
COPY --from=nodebuilder /usr/local/bin/node /usr/local/bin/
|
|
6
6
|
COPY --from=nodebuilder /usr/local/lib/node_modules/. /usr/local/lib/node_modules/
|
|
@@ -12,7 +12,7 @@ RUN set -x && \
|
|
|
12
12
|
cd /tmp/build && \
|
|
13
13
|
pnpm --registry https://registry.npmmirror.com install --prod
|
|
14
14
|
|
|
15
|
-
FROM python:3.10-slim
|
|
15
|
+
FROM python:3.10-slim-bullseye
|
|
16
16
|
|
|
17
17
|
ARG QL_MAINTAINER="whyour"
|
|
18
18
|
LABEL maintainer="${QL_MAINTAINER}"
|