Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM alpine

# Install only bash and nodejs, then remove cached package data
RUN apk add --update bash && apk add --update nodejs nodejs-npm && rm -rf /var/cache/apk/*
RUN apk add --update bash && apk add --update nodejs npm git && rm -rf /var/cache/apk/*

# Create app directory. This is where source code will be copied to
RUN mkdir -p /usr/src/app
Expand Down