twikoo 1.6.39 → 1.6.41

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/Dockerfile CHANGED
@@ -1,13 +1,13 @@
1
1
  ARG NODE_IMAGE=node
2
2
  FROM ${NODE_IMAGE}:lts AS build
3
3
  WORKDIR /app
4
- ENV NODE_ENV production
4
+ ENV NODE_ENV=production
5
5
  RUN set -eux; \
6
6
  npm install --production tkserver@latest; \
7
7
  mkdir -p data
8
- FROM ${NODE_IMAGE}:lts-buster-slim
8
+ FROM ${NODE_IMAGE}:lts-alpine
9
9
  WORKDIR /app
10
- ENV NODE_ENV production
10
+ ENV NODE_ENV=production
11
11
  COPY --from=build /app .
12
12
  EXPOSE 8080
13
13
  CMD ["/app/node_modules/.bin/tkserver"]