Skip to content

Commit

Permalink
Fix duplicate 'FROM' in Dockerfile example in README (#474)
Browse files Browse the repository at this point in the history
The example Dockerfile in the README.md had a typo with a repeated 'FROM' keyword. This commit removes the duplicate 'FROM', ensuring the Dockerfile example is correct and can be used as-is without modifications.
  • Loading branch information
Divine-Shadow authored Jan 17, 2024
1 parent 9733348 commit bc3d754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ packMain := Map("myapp"->"org.yourdomain.MyApp")
**Dockerfile**
```
# Using JDK17 from Amazon Corretto
FROM FROM amazoncorretto:17
FROM amazoncorretto:17
COPY target/pack /srv/myapp
Expand Down

0 comments on commit bc3d754

Please sign in to comment.