Skip to content

Commit f77cf84

Browse files
committed
Misc doc edits
1 parent 785b10f commit f77cf84

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
# Docker for Convex
22

3+
#######################################
34
# Build stage
45
FROM maven:3.9.9-eclipse-temurin-22-jammy AS build
56
WORKDIR /build
67
COPY . .
78
RUN mvn clean install -DskipTests
89

10+
#######################################
911
# Run stage
1012
FROM eclipse-temurin:22-jre-alpine AS run
1113

1214
# Add labels
1315
LABEL org.opencontainers.image.title="Convex"
1416
LABEL org.opencontainers.image.description="Convex Peer Node"
1517
LABEL org.opencontainers.image.source="https://github.com/Convex-Dev/convex"
18+
LABEL org.opencontainers.image.source="https://convex.world"
1619

1720
# Create non-root user
1821
RUN addgroup -S convex && adduser -S convex -G convex
@@ -45,7 +48,6 @@ EXPOSE $CONVEX_HTTP_PORT
4548
EXPOSE $CONVEX_HTTPS_PORT
4649

4750
# Define volumes
48-
VOLUME ["/etc/ssl/certs"]
4951
VOLUME ["/etc/convex/keystore"]
5052

5153
# Health check

convex-core/src/main/java/convex/core/cvm/transactions/Multi.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,8 @@ private Context applySubTransaction(Context ctx, ATransaction t) {
163163
}
164164
}
165165

166+
// TODO: possible signed sub-transaction for submission via another account? EIP-3009 style?
167+
166168
Context childContext=ctx.forkWithAddress(torigin);
167169
childContext = t.apply(childContext);
168170
ctx=ctx.handleStateResults(childContext,false);

0 commit comments

Comments
 (0)