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
|
||||
COPY . .
|
||||
RUN apk add --no-cache python3 build-base && \
|
||||
bun install && \
|
||||
bun run build
|
||||
RUN yarn install && \
|
||||
yarn build
|
||||
EXPOSE 3000
|
||||
CMD ["bun", "run", "start"]
|
||||
CMD ["yarn", "start"]
|
Loading…
Add table
Add a link
Reference in a new issue