Просмотр исходного кода

Try to use buster base images, because when using Wekan Alpine, registering new user of Wekan does not work (maybe because of glibc/musl).

Thanks to GavinLilly and xet7 !

Related #2762
Lauri Ojansivu 4 лет назад
Родитель
Сommit
254a9abad2
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -1,4 +1,4 @@
-FROM quay.io/wekan/node:12.20.1 AS builder
+FROM quay.io/wekan/node:12.20.1-buster AS builder
 # This is our builder image. It will take the Wekan meteor code and
 # build it into a standalone NodeJS package
 
@@ -36,7 +36,7 @@ RUN cd /build/bundle/programs/server/ && \
 RUN rm -rf /build/bundle/programs/web.browser.legacy
 
 
-FROM quay.io/wekan/node:12.20.1-alpine as app
+FROM quay.io/wekan/node:12.20.1-buster-slim as app
 # This is our runtime image. It takes the built NodeJS package and runs it using
 # the lighter Alpine NodeJS base image to keep image size down