From b1f2f456f1a44c24e6908cb5505be6d69026d7b4 Mon Sep 17 00:00:00 2001 From: Ruakij Date: Mon, 2 Aug 2021 16:55:15 +0200 Subject: [PATCH] Changed base-image to python-alpine and using daemon as entry directly --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0f36ab6..4437d2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM python:3.8-slim-buster +FROM python:3.9-alpine WORKDIR /app @@ -9,4 +9,4 @@ RUN pip3 install -r requirements.txt COPY . . -CMD [ "bash", "-c", "./entry.sh" ] \ No newline at end of file +CMD [ "python3", "daemon.py" ] \ No newline at end of file