mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-27 22:32:49 +03:00
Fix storage s3 endpoint not being optional
This commit is contained in:
parent
feebc45d31
commit
eb07b373a7
@ -13,10 +13,15 @@ COPY ./packages/twenty-server /app/packages/twenty-server
|
||||
RUN yarn
|
||||
|
||||
RUN npx nx reset
|
||||
RUN npx nx run twenty-server:build
|
||||
RUN mv /app/packages/twenty-server/dist /app/packages/twenty-server/build
|
||||
RUN npx nx run twenty-server:build:packageJson
|
||||
RUN mv /app/packages/twenty-server/dist/package.json /app/packages/twenty-server/package.json
|
||||
RUN npx nx run twenty-server:build
|
||||
RUN yarn workspaces focus twenty-emails twenty-server
|
||||
RUN rm -rf /app/packages/twenty-server/dist
|
||||
RUN mv /app/packages/twenty-server/build /app/packages/twenty-server/dist
|
||||
|
||||
WORKDIR /app
|
||||
RUN yarn workspaces focus --production twenty-emails twenty-server
|
||||
|
||||
FROM node:18.17.1-alpine as twenty-server
|
||||
|
||||
|
@ -165,6 +165,7 @@ export class EnvironmentVariables {
|
||||
|
||||
@ValidateIf((env) => env.STORAGE_TYPE === StorageDriverType.S3)
|
||||
@IsString()
|
||||
@IsOptional()
|
||||
STORAGE_S3_ENDPOINT: string;
|
||||
|
||||
@IsString()
|
||||
|
Loading…
Reference in New Issue
Block a user