PhoBERTa / Dockerfile
minhdang14902's picture
Update Dockerfile
38cb1f9 verified
raw
history blame contribute delete
240 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"]