Revert "apps/web: Dockerfile: remove using dotenv"

This reverts commit 36e158cb19894f6ce40c2f6b3cc41e8106384900.
This commit is contained in:
vchikalkin 2023-12-23 16:53:24 +03:00
parent 4b9ba14ee4
commit 0f82f208d9

View File

@ -6,6 +6,7 @@ RUN apk add --no-cache libc6-compat
RUN apk update RUN apk update
# Set working directory # Set working directory
WORKDIR /app WORKDIR /app
RUN pnpm add -g turbo dotenv-cli
COPY . . COPY . .
RUN turbo prune --scope=web --docker RUN turbo prune --scope=web --docker
@ -27,7 +28,8 @@ RUN pnpm install
# Build the project # Build the project
COPY --from=builder /app/out/full/ . COPY --from=builder /app/out/full/ .
COPY turbo.json turbo.json COPY turbo.json turbo.json
RUN pnpm turbo run build --filter=web... COPY .env .env
RUN pnpm dotenv -e .env turbo run build --filter=web...
FROM node:alpine AS runner FROM node:alpine AS runner
WORKDIR /app WORKDIR /app