Skip to content

Commit

Permalink
Fix location of aserver in the docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
lalinsky committed Dec 5, 2024
1 parent ed77ae6 commit 5fffca1
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 @@ -2,7 +2,7 @@ FROM ubuntu:22.04

RUN apt-get update && apt-get install -y ca-certificates

COPY dist/aserver-linux-amd64 /aserver
RUN chmod +x /aserver
COPY dist/aserver-linux-amd64 /usr/bin/aserver
RUN chmod +x /usr/bin/aserver

CMD ["/aserver"]
CMD ["/usr/bin/aserver"]

0 comments on commit 5fffca1

Please sign in to comment.