Skip to content

Commit

Permalink
CR-6109
Browse files Browse the repository at this point in the history
  • Loading branch information
olegz-codefresh committed Oct 23, 2021
1 parent a382ef0 commit 3370ea2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@ FROM node:10.24.0-alpine

WORKDIR /app/

RUN apk --no-cache update && apk add --no-cache bash openssh-client curl

COPY package.json ./

COPY yarn.lock ./

RUN yarn install
RUN apk add --no-cache --virtual deps python make g++ krb5-dev git && \
yarn install --forzen-lockfile --production && \
yarn cache clean && \
apk del deps && \
rm -rf /tmp/*

COPY . ./

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codefresh-image-factory",
"version": "1.1.1",
"version": "1.3.0",
"main": "index.js",
"author": "olegz.codefresh <[email protected]>",
"license": "MIT",
Expand Down

0 comments on commit 3370ea2

Please sign in to comment.