From 7266be0dc0cc40f1c1680f9059e866ecb29b89c8 Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Sun, 26 Feb 2023 22:23:45 -0500 Subject: [PATCH] Switch to alpine base image --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f88ae0c..1578515 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1 -FROM python:3.11-slim-buster +FROM python:3.11-alpine3.17 WORKDIR /app diff --git a/README.md b/README.md index b1a14e7..1490ec5 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This was originally written before [alerts](https://www.redflagdeals.com/alerts/ The simplest way to get started is to clone this repo, and run with docker: ```sh -docker run -it -v "$(pwd)/examples/config.yml:/app/config.yml" ghcr.io/davegallant/rfd-notify:1 +docker run -it -v "$(pwd)/examples/config.yml:/app/config.yml" ghcr.io/davegallant/rfd-notify:1 ``` To run the code with [poetry](https://python-poetry.org/), clone this repo and run the following: