-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorder FROM instruction in Dockerfiles
The order of the Docker instructions in Dockerfiles for both server, client, and proxy has been adjusted, so the FROM instruction is now the first instruction in each Dockerfile. This change complies with best practices for Dockerfile instruction order.
- Loading branch information
manu
committed
Jun 6, 2024
1 parent
2b81a87
commit 26ab498
Showing
3 changed files
with
3 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM nginx:1.25.5 | ||
LABEL org.opencontainers.image.source=https://github.com/SquirrelCorporation/SquirrelServersManager | ||
LABEL org.opencontainers.image.description="SSM Proxy" | ||
LABEL org.opencontainers.image.licenses="GNU AFFERO GENERAL PUBLIC LICENSE" | ||
|
||
FROM nginx:1.25.5 | ||
COPY default.conf /etc/nginx/conf.d | ||
COPY www/index.html /usr/share/nginx/html/custom.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters