init
This commit is contained in:
19
admin/Dockerfile
Normal file
19
admin/Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
FROM node:11.5-alpine
|
||||
|
||||
RUN mkdir -p /usr/src/admin
|
||||
|
||||
WORKDIR /usr/src/admin
|
||||
|
||||
# Prevent the reinstallation of node modules at every changes in the source code
|
||||
COPY package.json yarn.lock ./
|
||||
|
||||
RUN apk add --no-cache --virtual .gyp \
|
||||
python \
|
||||
make \
|
||||
g++ \
|
||||
&& yarn install \
|
||||
&& apk del .gyp
|
||||
|
||||
COPY . ./
|
||||
|
||||
CMD yarn start
|
||||
Reference in New Issue
Block a user