Translator_API / Dockerfile
Guruganesh070's picture
changes made by GG
26b7a86
raw
history blame contribute delete
156 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
EXPOSE 8080
CMD ["python3", "app.py"]