Chatbot_Law / Dockerfile
minhdang14902's picture
Create Dockerfile
1f279b2 verified
raw
history blame
239 Bytes
# Sử dụng một image Python làm base
FROM python:3.8-slim
# Copy toàn bộ mã nguồn vào container
COPY . /app
# Thiết lập thư mục làm việc
WORKDIR /app
# Command để chạy ứng dụng
CMD ["python", "app.py"]