Skip to content

Commit

Permalink
Fix path to executable in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
cant-code committed Mar 25, 2024
1 parent 7fc793c commit c315c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ USER appuser
# Copy the executable from the "build" stage.
COPY ./bin/app /bin

RUN chmod +x /bin/app
RUN chmod +x ./bin/app

# Expose the port that the application listens on.
EXPOSE 8080
Expand Down

0 comments on commit c315c92

Please sign in to comment.