mirror of
https://github.com/wneessen/apg-go.git
synced 2024-11-12 17:02:56 +01:00
Winni Neessen
0ec81e16cc
The Dockerfile has been streamlined to remove unnecessary steps and over-complications. Previously the setup involved building in a separate stage and copying files over, which has now been simplified to just copying the necessary executable to the scratch container and specifying the entry point.
3 lines
No EOL
43 B
Docker
3 lines
No EOL
43 B
Docker
FROM scratch
|
|
ENTRYPOINT ["/apg"]
|
|
COPY apg / |