Skip to content

Commit

Permalink
Update docker file due to changes in 4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Husky-Devel committed Dec 27, 2024
1 parent 12b3ec4 commit bd76073
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ ENV PUPPETEER_SKIP_DOWNLOAD=TRUE
# Install any needed system dependencies for the build
RUN apt-get update && \
apt-get install -y --no-install-recommends \
python3 \
build-essential && \
rm -rf /var/lib/apt/lists/*

# Install dependencies
RUN npm install -g [email protected]
RUN corepack enable
RUN yarn set version berry
RUN yarn --version
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
RUN yarn install --immutable

# Build the app
COPY . .
Expand Down

0 comments on commit bd76073

Please sign in to comment.