Skip to content

Commit

Permalink
changed path
Browse files Browse the repository at this point in the history
  • Loading branch information
Aymen-Tirchi committed Sep 18, 2023
1 parent 5267a60 commit f33d5f6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker/Dockerfile.op-stack
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CMD ["/app/entrypoint-build-optimism.sh"]
# Stage 2: Build op-geth
FROM common AS build-op-geth

COPY scripts/entrypoint-build-op-geth.sh /app/
COPY docker/scripts/entrypoint-build-op-geth.sh /app/

RUN chmod +x /app/entrypoint-build-op-geth.sh

Expand All @@ -32,7 +32,7 @@ CMD ["/app/entrypoint-build-op-geth.sh"]
# Stage 3: Generate Keys
FROM common AS generate-keys

COPY scripts/entrypoint-generate-keys.sh /app/
COPY docker/scripts/entrypoint-generate-keys.sh /app/

RUN chmod +x /app/entrypoint-generate-keys.sh

Expand All @@ -41,7 +41,7 @@ CMD ["/app/entrypoint-generate-keys.sh"]
# Stage 4: Configure Network
FROM common AS configure-network

COPY scripts/entrypoint-configure-network.sh /app/
COPY docker/scripts/entrypoint-configure-network.sh /app/

RUN chmod +x /app/entrypoint-configure-network.sh

Expand All @@ -50,7 +50,7 @@ CMD ["/app/entrypoint-configure-network.sh"]
# Stage 5: Deploy L1 Contracts
FROM common AS deploy-l1-contracts

COPY scripts/entrypoint-deploy-l1-contracts.sh /app/
COPY docker/scripts/entrypoint-deploy-l1-contracts.sh /app/

RUN chmod +x /app/entrypoint-deploy-l1-contracts.sh

Expand All @@ -59,7 +59,7 @@ CMD ["/app/entrypoint-deploy-l1-contracts.sh"]
# Stage 6: Configure L2
FROM common AS configure-l2

COPY scripts/entrypoint-l2-config.sh /app/
COPY docker/scripts/entrypoint-l2-config.sh /app/

RUN chmod +x /app/entrypoint-l2-config.sh

Expand All @@ -68,7 +68,7 @@ CMD ["/app/entrypoint-l2-config.sh"]
# Stage 7: Initialize op-geth
FROM common AS init-op-geth

COPY scripts/entrypoint-init-op-geth.sh /app/
COPY docker/scripts/entrypoint-init-op-geth.sh /app/

RUN chmod +x /app/entrypoint-init-op-geth.sh

Expand Down

0 comments on commit f33d5f6

Please sign in to comment.