Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nflorescf committed Feb 22, 2024
1 parent c757958 commit 890642c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ COPY . .
# Display Cargo.toml for debugging
RUN cat ./vesting/Cargo.toml

COPY entrypoint.sh ./entrypoint.sh
RUN chmod +xr ./entrypoint.sh
COPY entrypoint.sh /usr/src/myapp/entrypoint.sh
RUN chmod +xr /usr/src/myapp/entrypoint.sh
RUN ls -ltr
ENTRYPOINT ["./entrypoint.sh"]
ENTRYPOINT ["/usr/src/myapp/entrypoint.sh"]

0 comments on commit 890642c

Please sign in to comment.