Remove web link
This commit is contained in:
parent
847a390467
commit
d83c2c7fd7
2 changed files with 16 additions and 4 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal file
|
|
@ -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"]
|
||||
|
|
@ -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
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue