Skip to content

Commit

Permalink
build: Change Dockerfile base image
Browse files Browse the repository at this point in the history
  • Loading branch information
Gianmarco Ciaffardini authored and Gianmarco Ciaffardini committed Sep 28, 2022
1 parent b91465c commit c4fe7e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# BUILD FOR LOCAL DEVELOPMENT
###################

FROM amd64/node:16-alpine As development
FROM node:16-alpine As development

COPY --chown=node:node package*.json ./
COPY --chown=node:node yarn.lock ./
Expand All @@ -17,7 +17,7 @@ USER node
# BUILD FOR PRODUCTION
###################

FROM amd64/node:16-alpine As build
FROM node:16-alpine As build

ARG TOKEN
ARG CLIENT_ID
Expand All @@ -40,7 +40,7 @@ USER node
# PRODUCTION
###################

FROM amd64/node:16-alpine As production
FROM node:16-alpine As production


# Copy the bundled code from the build stage to the production image
Expand Down

0 comments on commit c4fe7e2

Please sign in to comment.