Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rishikanthc committed Aug 19, 2024
1 parent e561b54 commit db867b8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM python:3.12-alpine

RUN pip install --no-cache-dir markopolis==0.3.4
# Install ripgrep
RUN apk add --no-cache ripgrep

# Install markopolis
RUN pip install --no-cache-dir markopolis==1.0.0

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ version: '3.8'
services:
markopolis:
image: ghcr.io/rishikanthc/markopolis:0.3.4
image: ghcr.io/rishikanthc/markopolis:1.0.0
ports:
- "8080:8080"
environment:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "markopolis"
version = "0.3.4"
version = "1.0.0"
description = "Self-hostable Obsidian Publish"
authors = ["Rishikanth Chandrasekaran <[email protected]>"]
readme = "README.md"
Expand Down Expand Up @@ -60,4 +60,4 @@ diagnosticMode = "openFilesOnly"
consume = "markopolis.scripts.consume:consume"
markopolis = "markopolis.app:main"
mtest = "markopolis.scripts.testsh:main"
md_sync = "markopolis.scripts.md_sync:md_sync"
mdsync = "markopolis.scripts.md_sync:mdsync"

0 comments on commit db867b8

Please sign in to comment.