Update Dockerfile

This commit is contained in:
yasirarism 2023-07-11 22:16:34 +07:00 committed by GitHub
parent 0fb0918f10
commit cfd0dbba66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,15 +5,15 @@
# Base Docker Using Ubuntu 23.04, Python 3.11 and Built In Pip # Base Docker Using Ubuntu 23.04, Python 3.11 and Built In Pip
## With Built in Pip Package ## With Built in Pip Package
# FROM yasirarism/misskaty-docker:latest FROM yasirarism/misskaty-docker:latest
## Without Built in Pip Package ## Without Built in Pip Package
FROM yasirarism/misskaty-docker:free # FROM yasirarism/misskaty-docker:free
# Set Hostname # Set Hostname
ENV HOSTNAME misskaty ENV HOSTNAME misskaty
# Copy Files # Copy Files
COPY . . COPY . .
# Instal pip package # Instal pip package
RUN pip3 install --no-cache-dir -r requirements.txt --break-system-packages # RUN pip3 install --no-cache-dir -r requirements.txt --break-system-packages
# Set CMD Bot # Set CMD Bot
CMD ["bash", "start.sh"] CMD ["bash", "start.sh"]