Skip to content

Commit

Permalink
Merge pull request #16 from thebitparticle/main
Browse files Browse the repository at this point in the history
changed manager in docker to yarn
  • Loading branch information
thebitparticle authored Oct 3, 2023
2 parents a8efc6f + 4707761 commit 11ac424
Show file tree
Hide file tree
Showing 3 changed files with 1,033 additions and 1,015 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM node:18-alpine AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app

COPY package.json package-lock.json ./
RUN npm install
COPY package.json yarn.lock ./
RUN yarn install

FROM node:18-alpine AS builder
WORKDIR /app
Expand Down Expand Up @@ -33,7 +33,7 @@ ENV NEXT_PUBLIC_HOST_PATH=$NEXT_PUBLIC_HOST_PATH

ENV NEXT_TELEMETRY_DISABLED 1

RUN npm run build
RUN yarn build

FROM node:18-alpine AS runner
WORKDIR /app
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"typescript": "^5.1.6",
"viem": "^1.2.5",
"wagmi": "^1.3.3",
"web-vitals": "2.1.4"
"web-vitals": "2.1.4",
"yarn": "^1.22.19"
},
"scripts": {
"dev": "next dev",
Expand Down
Loading

0 comments on commit 11ac424

Please sign in to comment.