Victoria (Balazs) Nadasdi 2024-05-02 04:51:51 +02:00 zatwierdzone przez GitHub
commit 064dca7e5b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
3 zmienionych plików z 53 dodań i 1 usunięć

Wyświetl plik

@ -30,3 +30,20 @@ jobs:
files: |
phanpy-dist.zip
phanpy-dist.tar.gz
- name: Extract metadata for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
${{ steps.tag_name.outputs.tag_name }}
latest
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
build-args: |
VERSION=${{ steps.tag_name.outputs.tag_name }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

16
Dockerfile 100644
Wyświetl plik

@ -0,0 +1,16 @@
from node:21-alpine as builder
workdir /code
copy . /code
run npm ci && npm run build
from nginx:1.25.4-alpine
label maintainer="Victoria Nadasdi <efertone@pm.me>"
label org.opencontainers.image.source=https://github.com/cheeaun/phanpy
label org.opencontainers.image.description="Docker Image for Phanpy"
label org.opencontainers.image.licenses=MIT
copy --from=builder /code/dist /usr/share/nginx/html

Wyświetl plik

@ -123,12 +123,31 @@ Some of these may change in the future. The front-end world is ever-changing.
This is a **pure static web app**. You can host it anywhere you want.
Two ways (choose one):
Three ways (choose one):
### Easy way
Go to [Releases](https://github.com/cheeaun/phanpy/releases) and download the latest `phanpy-dist.zip` or `phanpy-dist.tar.gz`. It's pre-built so don't need to run any install/build commands. Extract it. Serve the folder of extracted files.
### The Docker way
```bash
docker run -p 8080:80 ghcr.io/cheeaun/phanpy:latest
```
With Docker Compose:
```yaml
---
version: "3.9"
services:
phanpy:
image: ghcr.io/cheeaun/phanpy:latest
container_name: phanpy
ports:
- 8080:80
```
### Custom-build way
Requires [Node.js](https://nodejs.org/).