Skip to content

Commit

Permalink
fix docker builds for ui
Browse files Browse the repository at this point in the history
  • Loading branch information
iskakaushik committed Oct 16, 2023
1 parent 3015321 commit e833c9b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/dev-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Dev Docker Images
on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
docker-build:
Expand Down
1 change: 1 addition & 0 deletions stacks/peerdb-ui.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Base stage
FROM node:18-bookworm-slim AS base
RUN apt-get update && apt-get install -y openssl
WORKDIR /app

# Dependencies stage
Expand Down
2 changes: 2 additions & 0 deletions ui/app/mirrors/create/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ import { cdcSettings } from './helpers/cdc';
import { blankCDCSetting } from './helpers/common';
import TableMapping from './tablemapping';

export const dynamic = 'force-dynamic';

export default function CreateMirrors() {
const router = useRouter();
const [mirrorName, setMirrorName] = useState<string>('');
Expand Down

0 comments on commit e833c9b

Please sign in to comment.