Skip to content
Merged
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
4 changes: 2 additions & 2 deletions roverctl-web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM oven/bun:1-alpine AS builder
WORKDIR /app
COPY package*.json .
COPY bun.lockb* .
RUN bun install --frozen-lockfile
RUN bun install
COPY . .
# These are runtime arguments, but they do need to exist at built time to be able to import from public in svelte
ARG PUBLIC_ROVERD_HOST=""
Expand All @@ -14,7 +14,7 @@ ARG PUBLIC_PASSTHROUGH_HOST=""
ARG PUBLIC_PASSTHROUGH_PORT=""

RUN bun run build
RUN bun install --production --frozen-lockfile
RUN bun install --production

FROM oven/bun:1-alpine
WORKDIR /app
Expand Down
Loading