Skip to content

Commit

Permalink
fix wrong depoyment script name in CB docker file (#2298)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #2298

While building PC on CB via skaffold we hit an error complaining that deploy_tee.sh didn't exist. This diff fixes that.

Reviewed By: wenhaizhu

Differential Revision: D45999834

fbshipit-source-id: a44dc9066f68c31403c69cfddf4460dc36518bef
  • Loading branch information
Zutian Luo authored and facebook-github-bot committed May 18, 2023
1 parent 6e9b7d9 commit e9854c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fbpcs/infra/cloud_bridge/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ RUN terraform --version
RUN mkdir -p /terraform_deployment/config
COPY deploy.sh /terraform_deployment
RUN chmod +x /terraform_deployment/deploy.sh
COPY deploy_tee.sh /terraform_deployment
RUN chmod +x /terraform_deployment/deploy_tee.sh
COPY deploy_pc_infra.sh /terraform_deployment
RUN chmod +x /terraform_deployment/deploy_pc_infra.sh
COPY util.sh /terraform_deployment
RUN chmod +x /terraform_deployment/util.sh
COPY pceValidator.sh /terraform_deployment
Expand Down

0 comments on commit e9854c6

Please sign in to comment.