revert dockerfile to yarn due to bun incompability
This commit is contained in:
parent
f4102db5ea
commit
b9f3ab5692
1 changed files with 5 additions and 5 deletions
10
Dockerfile
10
Dockerfile
|
@ -1,8 +1,8 @@
|
||||||
FROM oven/bun:alpine
|
FROM node:alpine
|
||||||
|
USER node
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN apk add --no-cache python3 build-base && \
|
RUN yarn install && \
|
||||||
bun install && \
|
yarn build
|
||||||
bun run build
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
CMD ["bun", "run", "start"]
|
CMD ["yarn", "start"]
|
Loading…
Add table
Add a link
Reference in a new issue