diff options
Diffstat (limited to 'backend')
| -rw-r--r-- | backend/Dockerfile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/backend/Dockerfile b/backend/Dockerfile index 3732252..f46e170 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,5 +1,9 @@ +# we support images for building with a vanilla SteamOS base, +# or versions with ootb support for rust or go +# developers can also customize these images via this Dockerfile +#FROM ghcr.io/steamdeckhomebrew/holo-toolchain-rust:latest +#FROM ghcr.io/steamdeckhomebrew/holo-toolchain-go:latest FROM ghcr.io/steamdeckhomebrew/holo-base:latest -ENTRYPOINT [ "/source/entrypoint.sh" ] - -WORKDIR /src
\ No newline at end of file +# entrypoint.sh should always be located in the backend folder +ENTRYPOINT [ "/backend/entrypoint.sh" ]
\ No newline at end of file |
