Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump node from 13-alpine3.11 to 14-alpine3.11 #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:13-alpine3.11 as Builder
FROM node:14-alpine3.11 as Builder
WORKDIR /app

COPY package.json package-lock.json tsconfig.json ./
Expand All @@ -8,15 +8,15 @@ COPY src ./src/
RUN NODE_ENV=production npm run build


FROM node:13-alpine3.11 as Fetcher
FROM node:14-alpine3.11 as Fetcher
WORKDIR /app
ENV NODE_ENV=production

COPY package.json package-lock.json ./
RUN npm ci --prod


FROM node:13-alpine3.11
FROM node:14-alpine3.11
COPY --from=Builder /app/package.json /app/
COPY --from=Builder /app/dist /app/dist
COPY --from=Fetcher /app/node_modules /app/node_modules
Expand Down