Skip to content

Commit

Permalink
updated image
Browse files Browse the repository at this point in the history
  • Loading branch information
kkmanos committed Aug 9, 2023
1 parent dced1af commit 17d9a95
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Builder stage
FROM node:16-alpine AS builder
FROM node:16-bullseye-slim AS builder
WORKDIR /home/node/app

COPY . .
RUN yarn cache clean && yarn --frozen-lockfile && yarn build

# Production stage
FROM node:16-alpine AS production
FROM node:16-bullseye-slim AS production
WORKDIR /home/node/app

COPY --from=builder /home/node/app/package.json .
Expand Down
2 changes: 1 addition & 1 deletion cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine
FROM node:16-bullseye-slim

WORKDIR /home/node/app

Expand Down
2 changes: 1 addition & 1 deletion development.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine
FROM node:16-bullseye-slim
WORKDIR /home/node/app

# Copy package.json and yarn.lock and npmrc to the container
Expand Down
2 changes: 1 addition & 1 deletion samples/wallet-mock/config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
walletBackendUrl: "http://127.0.0.1:8002",
walletBackendUrl: "http://wallet-backend-server:8002",
// trustedIssuerDID: "did:ebsi:zc6MhmU4NbKSAtAHx8XgpEW",
uoaTrustedIssuerDID: "did:ebsi:zpq1XFkNWgsGB6MuvJp21vA",
vidTrustedIssuerDID: "did:ebsi:zyhE5cJ7VVqYT4gZmoKadFt",
Expand Down
2 changes: 1 addition & 1 deletion samples/wallet-mock/development.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine
FROM node:16-bullseye-slim
WORKDIR /home/node/app

# Copy package.json and yarn.lock and npmrc to the container
Expand Down

0 comments on commit 17d9a95

Please sign in to comment.