Skip to content

Commit

Permalink
Merge pull request #37 from gunet/dockerfile
Browse files Browse the repository at this point in the history
uploaded .env.prod
  • Loading branch information
kkmanos authored Sep 14, 2023
2 parents 168c103 + d453064 commit 78bc1e3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
build
.env
11 changes: 11 additions & 0 deletions .env.prod
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
HOST='wallet.sample.gr'
PORT=3000
VAPIDKEY=BJCTqgCVzg2ApV0Ys_547xGg2G4WAGsSy4MULjzBV2MxWiJmdL3RiPIGJfM4xEqZa7C6PrlVyZg1ZT72bZPwmJc4
REACT_APP_WALLET_BACKEND_URL=https://wallet.sample.gr/wallet-backend-server
REACT_APP_FIREBASE_API_KEY=AIzaSyAfAxdW05Q-fWlMEUEBkPr8avW6GRNjUcE
REACT_APP_FIREBASE_AUTH_DOMAIN=ediplomas-wallet.firebaseapp.com
REACT_APP_FIREBASE_PROJECT_ID=ediplomas-wallet
REACT_APP_FIREBASE_STORAGE_BUCKET=ediplomas-wallet.appspot.com
REACT_APP_FIREBASE_MESSAGING_SENDER_ID=598999145142
REACT_APP_FIREBASE_APP_ID=1:598999145142:web:9561c751460a10b6836417
REACT_APP_FIREBASE_MEASUREMENT_ID=G-SY9LQ8597Y
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM node:16-bullseye-slim AS builder

WORKDIR /home/node/app
COPY . .
COPY .env.prod .env

RUN yarn install --frozen-lockfile && yarn cache clean -f && yarn build

Expand Down

0 comments on commit 78bc1e3

Please sign in to comment.