mirror of
https://github.com/umami-software/umami.git
synced 2026-02-07 22:27:16 +01:00
Remove prestart script.
This commit is contained in:
parent
f2d17996eb
commit
a4e2e46834
3 changed files with 4 additions and 23 deletions
11
Dockerfile
11
Dockerfile
|
|
@ -1,10 +1,5 @@
|
|||
# Build-time variables
|
||||
ARG NODE_VERSION=16
|
||||
ARG ALPINE_VERSION=3.15
|
||||
|
||||
|
||||
# Build image
|
||||
FROM node:${NODE_VERSION}-alpine${ALPINE_VERSION} AS build
|
||||
FROM node:12.22-alpine AS build
|
||||
ARG BASE_PATH
|
||||
ARG DATABASE_TYPE
|
||||
|
||||
|
|
@ -30,9 +25,8 @@ COPY . /build
|
|||
RUN yarn next telemetry disable
|
||||
RUN yarn build
|
||||
|
||||
|
||||
# Production image
|
||||
FROM node:${NODE_VERSION}-alpine${ALPINE_VERSION} AS production
|
||||
FROM node:12.22-alpine AS production
|
||||
WORKDIR /app
|
||||
|
||||
# Copy cached dependencies
|
||||
|
|
@ -44,7 +38,6 @@ COPY --from=build /build/node_modules/.prisma/ ./node_modules/.prisma/
|
|||
COPY --from=build /build/yarn.lock /build/package.json ./
|
||||
COPY --from=build /build/.next ./.next
|
||||
COPY --from=build /build/public ./public
|
||||
COPY --from=build /build/scripts ./scripts
|
||||
|
||||
USER node
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue