Changed base-image to python-alpine and using daemon as entry directly

This commit is contained in:
Ruakij 2021-08-02 16:55:15 +02:00
parent 70d3a70c6a
commit b1f2f456f1

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1 # syntax=docker/dockerfile:1
FROM python:3.8-slim-buster FROM python:3.9-alpine
WORKDIR /app WORKDIR /app
@ -9,4 +9,4 @@ RUN pip3 install -r requirements.txt
COPY . . COPY . .
CMD [ "bash", "-c", "./entry.sh" ] CMD [ "python3", "daemon.py" ]