chore: added install package script

This commit is contained in:
wonderlandpark 2021-03-06 22:54:44 +09:00
parent 82270b4f17
commit 423b087e0f

View File

@ -1,5 +1,9 @@
FROM node:14.16-alpine FROM node:14.16-alpine
# install packages
RUN apk update && apk upgrade && \
apk add --no-cache bash git openssh
# Create app directory # Create app directory
RUN mkdir -p /usr/src/app RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app WORKDIR /usr/src/app