Skip to content
Merged
Changes from 1 commit
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
10 changes: 8 additions & 2 deletions frontend/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@ COPY --chmod=444 package.json pnpm-lock.yaml ./
RUN npm install --ignore-scripts -g pnpm && \
pnpm install --ignore-scripts

# TODO(arkid15r): copy what's needed only.
COPY . .
COPY .env ./
COPY next.config.ts ./
COPY postcss.config.js ./
COPY tailwind.config.js ./
COPY tsconfig.json ./

COPY public ./public
COPY src ./src

RUN pnpm run build

Expand Down