1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 03:29:37 +02:00

Merge branch 'feature' into feature-docker-secret-integration

This commit is contained in:
pawelmalak 2021-12-02 14:23:31 +01:00 committed by GitHub
commit 2b25a67bbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
61 changed files with 1616 additions and 909 deletions

View file

@ -1,4 +1,4 @@
FROM node:14 as builder
FROM node:16 as builder
WORKDIR /app
@ -16,7 +16,7 @@ RUN mkdir -p ./public ./data \
&& mv ./client/build/* ./public \
&& rm -rf ./client
FROM node:14-alpine
FROM node:16-alpine
COPY --from=builder /app /app

View file

@ -1,4 +1,4 @@
FROM node:14-alpine3.11 as builder
FROM node:16-alpine3.11 as builder
WORKDIR /app
@ -17,7 +17,7 @@ RUN mkdir -p ./public ./data \
&& mv ./client/build/* ./public \
&& rm -rf ./client
FROM node:14-alpine3.11
FROM node:16-alpine3.11
COPY --from=builder /app /app