Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
Reorder build args in the Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tdemin committed Jan 26, 2020
1 parent 304dad4 commit 5dd6536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,14 +1,14 @@
FROM node:10-alpine AS builder
ENV NODE_ENV production
ENV CI true
ARG REACT_APP_APIURI=/api/v0
WORKDIR /app

COPY package.json yarn.lock tsconfig.json /app/
RUN yarn install

COPY public /app/public
COPY src /app/src
ARG REACT_APP_APIURI=/api/v0
RUN yarn build

FROM nginx:1.16-alpine AS release
Expand Down

0 comments on commit 5dd6536

Please sign in to comment.