From 2851a87a373605ac04c1a43df064764f04c96f61 Mon Sep 17 00:00:00 2001 From: Bryant Moscon Date: Fri, 18 Feb 2022 19:09:16 -0500 Subject: [PATCH] 1.0.0 release --- CHANGES.md | 2 +- Dockerfile | 5 +++-- README.md | 8 ++++++++ 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 64ff46d..bc40087 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ ## Changelog -### 1.0.0 +### 1.0.0 (2022-02-18) * Update: Old repo moved to legacy branch, new version (1.X) created. * Feature: Support for public channels on Redis and Mongo * Bugfix: Input validation, remove unused callbacks from Feed. diff --git a/Dockerfile b/Dockerfile index 0e577e4..6df8e77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ -FROM python:3.9-buster +FROM python:3.9-slim-bullseye -RUN apt install gcc git +RUN apt update +RUN apt install gcc git -y RUN pip install --no-cache-dir cython RUN pip install --no-cache-dir cryptofeed diff --git a/README.md b/README.md index f253e7b..604eda9 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,14 @@ A storage engine for cryptocurrency data, Cryptostore is an application wrapper This project assumes familiarity with Docker, but some basic commands are available to get you started below. +### Using a Prebuilt Container Image + +Docker images are hosted in GitHub and can be pulled using the following command: + +``` +docker pull ghcr.io/bmoscon/cryptostore:latest +``` + ### To Build a Container `docker build . -t "cryptostore:latest"`