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

master
Ruakij 3 years ago
parent 70d3a70c6a
commit b1f2f456f1

@ -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" ]
CMD [ "python3", "daemon.py" ]
Loading…
Cancel
Save