File size: 572 Bytes
70e533e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# * @author        Yasir Aris M <[email protected]>
# * @date          2022-12-01 09:12:27
# * @projectName   MissKatyPyro
# * Copyright ©YasirPedia All rights reserved

# Base Docker Using Debian 12 (Bookworm), Python 3.11.6 and Built In Pip
## With Built in Pip Package
FROM yasirarism/misskaty-docker:ubuntu23.10
## Without Built in Pip Package
# FROM yasirarism/misskaty-docker:free

# Set Hostname
ENV HOSTNAME yasir-server
# Copy Files
COPY . .
# Instal pip package
# RUN pip3 install --no-cache-dir -r requirements.txt
# Set CMD Bot
CMD ["bash", "start.sh"]