Skip to content

Commit

Permalink
ci: install git in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
4gray committed Oct 25, 2023
1 parent 0607b78 commit adbf2df
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
FROM node:18-alpine
FROM node:18-alpine AS build

# Create app directory
WORKDIR /usr/src/app

# install git to clone dependency from github
RUN apk add --no-cache git

# Copy both package*.json files
COPY package*.json ./

Expand Down

0 comments on commit adbf2df

Please sign in to comment.