From 67cb61ff2f7911089654ee2368d5524154329f4a Mon Sep 17 00:00:00 2001 From: Abhishek Shroff Date: Thu, 1 May 2025 12:41:56 +0530 Subject: [PATCH] [server] Fix dockerfile to remove app prefix, and host port env --- .env | 3 +++ Dockerfile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.env b/.env index 2fda8135..63c4997a 100644 --- a/.env +++ b/.env @@ -4,6 +4,9 @@ STORAGE_LOCATION=./data/storage # The location where your database files are stored PG_DATA_LOCATION=./data/postgres +PHYLUM_SERVER_HOST= +PHYLUM_SERVER_PORT=2448 + PHYLUM_DB_NAME=phylum PHYLUM_DB_USER=phylum PHYLUM_DB_PASSWORD=phylum diff --git a/Dockerfile b/Dockerfile index 18dfb33c..bf066261 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ COPY client/pubspec.yaml client/pubspec.lock . COPY client/lib ./lib COPY client/web ./web RUN flutter pub get -RUN flutter build web --wasm --base-href "/app/" +RUN flutter build web --wasm FROM alpine WORKDIR /app