MissKatyPyro/Dockerfile
Yasir Aris M a0683be229
Fixed
- LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 13)
2024-09-02 23:00:39 +07:00

19 lines
558 B
Docker

# * @author Yasir Aris M <yasiramunandar@gmail.com>
# * @date 2022-12-01 09:12:27
# * @projectName MissKatyPyro
# * Copyright ©YasirPedia All rights reserved
# Base Docker Using Ubuntu 24.04, Python 3.12 and Built In Pip
## With Built in Pip Package
FROM yasirarism/misskaty-docker:py3.12
## 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"]