Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions frontend/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
node_modules
.svelte-kit
build
.output
.vercel
.netlify
.wrangler
.DS_Store
Thumbs.db
.env
.env.*
!.env.example
*.log
npm-debug.log*
4 changes: 4 additions & 0 deletions frontend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ COPY package*.json ./
RUN npm ci

COPY . .

# Set production environment variable for build
ENV PUBLIC_API_BASE_URL=/api

RUN npm run build

FROM nginx:alpine
Expand Down
Loading