0.0.2
This commit is contained in:
15
dockerfile
Normal file
15
dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
FROM python:3.11.9-slim
|
||||
|
||||
WORKDIR /opt/app
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
git \
|
||||
tzdata \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
RUN git clone https://github.com/serty2005/MHservice.git .
|
||||
|
||||
CMD ["python", "/opt/app/app.py"]
|
||||
Reference in New Issue
Block a user