From d83c2c7fd7268161fa326106780a04d91ea171c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20M=C3=A5rdbrink?= Date: Sun, 7 Dec 2025 17:45:03 +0100 Subject: [PATCH] Remove web link --- Dockerfile | 15 +++++++++++++++ README.md | 5 +---- 2 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..cb3a27b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM python:3.11-slim + +WORKDIR /app + +# Copy all necessary files +COPY index.html . +COPY server.py . +COPY build ./build +COPY res ./res + +# Expose port (Fly.io uses PORT env variable) +EXPOSE 8080 + +# Run the server +CMD ["python", "server.py"] diff --git a/README.md b/README.md index c516633..ebf2646 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,7 @@ A clicking game where you prune stars and diamonds from the cosmos. Built with G ### Running the Game -Play it [on the web](https://stellar-prune.fly.dev/) - - -Or run it locally: +Run it locally: ```bash make play ```