Skip to content

Commit

Permalink
🐳 Fix dependencies versions in Dockerfile (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgauduch authored and bpetetot committed Jun 21, 2019
1 parent 73f1f37 commit 719541d
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
@@ -1,12 +1,12 @@
FROM node:10-alpine
FROM node:10.16.0-alpine

# install dependencies
RUN apk add --no-cache git
RUN apk add --no-cache git=2.20.1-r0
ENV NODE_ENV=production

# build gitmoji-changelog from source
COPY . /usr/src/gitmoji-changelog
WORKDIR /usr/src/gitmoji-changelog
COPY . .
RUN yarn --frozen-lockfile && yarn cache clean

# run gitmoji-changelog on /usr/src/app
Expand Down

0 comments on commit 719541d

Please sign in to comment.