diff --git a/build/Dockerfile b/build/Dockerfile
index 430015c4bb66969e7658a820a5b3a4b18373bb0e..622be44828c98fa1f72fd77a72de072a10ae0766 100644
--- a/build/Dockerfile
+++ b/build/Dockerfile
@@ -12,8 +12,8 @@
 ## See the License for the specific language governing permissions and
 ## limitations under the License.
 
-# docker build "$PWD" --build-arg commit="$(git rev-parse --short HEAD)" --build-arg version=v2.1.1 -t heroiclabs/nakama:2.1.1
-# docker build "$PWD" --build-arg commit="$(git rev-parse --short HEAD)" --build-arg version="$(git rev-parse --short HEAD)" -t heroiclabs/nakama-prerelease:"$(git rev-parse --short HEAD)"
+# docker build "$PWD" --build-arg commit="$(git rev-parse --short HEAD)" --build-arg version=3.19.0-gos-1 -t cr.gameless.online/public-projects/nakama:3.19.0-gos-1
+# docker push cr.gameless.online/public-projects/nakama:3.19.0-gos-1
 
 FROM golang:1.21.4-bookworm as builder
 
@@ -28,7 +28,7 @@ RUN apt-get update && \
     apt-get -y upgrade && \
     apt-get install -y --no-install-recommends ca-certificates gcc libc6-dev git && \
     git config --global advice.detachedHead false && \
-    git clone --quiet --no-checkout https://github.com/heroiclabs/nakama /go/build/nakama
+    git clone --quiet --no-checkout https://git.gameless.online/public-projects/nakama.git /go/build/nakama
 
 WORKDIR /go/build/nakama
 RUN git checkout --quiet "$commit" && \