Skip to content

Commit

Permalink
install git again
Browse files Browse the repository at this point in the history
  • Loading branch information
nemanjam committed May 15, 2024
1 parent cc17619 commit 2ad7182
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ FROM node:${NODE_VERSION}-slim AS base
WORKDIR /app

# install git
RUN apt-get update && apt-get install git
RUN apt-get update && apt-get install -y \
ca-certificates \
git \
&& rm -rf /var/lib/apt/lists/*

FROM base AS build
COPY package.json yarn.lock ./
Expand Down

0 comments on commit 2ad7182

Please sign in to comment.