Skip to content

Commit cb60ed1

Browse files
committed
fix: 🐛 Use bun.lock inside Dockerfile
1 parent 29b4cb4 commit cb60ed1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM imbios/bun-node:22-alpine AS base
66
FROM base AS install
77

88
RUN mkdir -p /temp/dev
9-
COPY package.json bun.lockb /temp/dev/
9+
COPY package.json bun.lock /temp/dev/
1010
COPY project.inlang /temp/dev/project.inlang
1111
RUN cd /temp/dev && bun install --frozen-lockfile
1212

@@ -32,4 +32,4 @@ LABEL org.opencontainers.image.description="Frontend for the Versia Server Proje
3232

3333
WORKDIR /app
3434
EXPOSE 3000
35-
CMD ["static-web-server", "--config-file", "/etc/config.toml"]
35+
CMD ["static-web-server", "--config-file", "/etc/config.toml"]

0 commit comments

Comments
 (0)