-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from g7ufo/docker-image
Docker image
- Loading branch information
Showing
5 changed files
with
137 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Temporary manual trigger for Docker build | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_docker: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
contents: read | ||
steps: | ||
- name: Clone Repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Log in to the GitHub Container registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push Docker images | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: | | ||
ghcr.io/g7ufo/reticulum-meshchat:latest | ||
ghcr.io/g7ufo/reticulum-meshchat:${{ github.ref_name }} | ||
labels: | | ||
org.opencontainers.image.title=Reticulum MeshChat | ||
org.opencontainers.image.description=Docker image for Reticulum MeshChat | ||
org.opencontainers.image.url=https://github.com/g7ufo/reticulum-meshchat/pkgs/container/reticulum-meshchat/ | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Build the frontend | ||
FROM node:20-bookworm-slim AS build-frontend | ||
|
||
WORKDIR /src | ||
|
||
COPY *.json . | ||
COPY *.js . | ||
COPY src/frontend ./src/frontend | ||
|
||
RUN npm install --omit=dev && \ | ||
npm install tailwindcss && \ | ||
npm run build-frontend | ||
|
||
# Main app build | ||
FROM python:3.11-bookworm | ||
|
||
WORKDIR /app | ||
|
||
COPY ./requirements.txt . | ||
COPY --from=build-frontend /src/public public | ||
|
||
RUN pip install -r requirements.txt | ||
|
||
COPY *.py . | ||
COPY src/__init__.py ./src/__init__.py | ||
COPY src/backend ./src/backend | ||
COPY *.json . | ||
|
||
CMD ["python", "meshchat.py", "--host=0.0.0.0", "--reticulum-config-dir=/config/.reticulum", "--storage-dir=/config/.meshchat", "--headless"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
services: | ||
reticulum-meshchat: | ||
container_name: reticulum-meshchat | ||
image: ghcr.io/liamcottle/reticulum-meshchat:latest | ||
pull_policy: always | ||
restart: unless-stopped | ||
# Make the web interace accessible from the host at 8000. | ||
ports: | ||
- 0.0.0.0:8000:8000 | ||
volumes: | ||
meshchat-config:/config | ||
# Uncomment if you have a USB device connected | ||
# devices: | ||
# - /dev/ttyUSB0:/dev/ttyUSB0 | ||
|
||
volumes: | ||
meshchat-config: | ||
|