Skip to content
This repository was archived by the owner on Feb 26, 2021. It is now read-only.
Merged
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
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@ RUN ./configure && \

FROM node:12-alpine

COPY package.json package-lock.json /src/
COPY package.json package-lock.json /src/
WORKDIR /src
RUN npm install --production
COPY --from=buildcontainer /usr/local/ /usr/local
COPY . /src

WORKDIR /src

RUN apk update && \
apk upgrade --no-cache && \
apk add libssh2 --no-cache
Expand Down