Skip to content

Commit

Permalink
setting to $HOME
Browse files Browse the repository at this point in the history
  • Loading branch information
babdor committed May 2, 2024
1 parent 15626c5 commit adf335a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
FROM ubuntu:jammy

COPY hello-world /hello-world
WORKDIR /$HOME

RUN chmod +x /hello-world
COPY hello-world /$HOME/hello-world

RUN chmod +x /$HOME/hello-world

EXPOSE 8080

CMD [ "/hello-world" ]
CMD [ "/$HOME/hello-world" ]

0 comments on commit adf335a

Please sign in to comment.