Skip to content

Commit

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

COPY hello-world ./hello-world
COPY hello-world /hello-world

RUN chmod +x ./hello-world
RUN chmod +x /hello-world

EXPOSE 8080

CMD [ "./hello-world" ]
CMD [ "/hello-world" ]

0 comments on commit 15626c5

Please sign in to comment.