gpt2-app / Dockerfile
cahya's picture
add docker file
b0e7bde
raw
history blame
No virus
151 Bytes
FROM python:3.8-slim-buster
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 8501
ENTRYPOINT ["streamlit","run"]
CMD ["app/app.py"]