24
1
Fork 0

Upgrade to Node v10

This commit is contained in:
Jon Buckley 2019-01-07 15:50:01 -05:00
parent b863b10566
commit c711b7ce42
No known key found for this signature in database
GPG Key ID: D2DEBA949CE8654A
1 changed files with 10 additions and 8 deletions

View File

@ -1,15 +1,17 @@
FROM node:10-alpine
FROM node:10 AS builder
RUN addgroup --gid 10001 app && adduser --disabled-password --gecos '' --gid 10001 --home /app --uid 10001 app
COPY package*.json /app/
WORKDIR /app
RUN npm install --production
RUN apk add --no-cache git
RUN addgroup -S -g 10001 app && adduser -S -D -G app -u 10001 app
COPY . /app
RUN chown -R app /app
FROM node:10-slim
RUN addgroup --gid 10001 app && adduser --disabled-password --gecos '' --gid 10001 --home /app --uid 10001 app
USER app
WORKDIR /app
RUN mkdir static
RUN npm install --production && npm cache clean --force
COPY --chown=app:app --from=builder /app .
COPY --chown=app:app . .
ENV PORT=1443
EXPOSE $PORT
CMD ["npm", "run", "prod"]
CMD ["node", "server/bin/prod.js"]