diff --git a/Dockerfile b/Dockerfile index 3d1de87a6..baca3163d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,6 @@ FROM python:3.11-slim-bookworm WORKDIR /app COPY --from=requirements-stage /tmp/requirements.txt /app/requirements.txt RUN pip install --no-cache-dir --upgrade -r requirements.txt -RUN pip install --no-cache-dir streamlit RUN playwright install-deps RUN playwright install RUN apt-get install -y xauth x11-apps netpbm && apt-get clean @@ -25,7 +24,4 @@ ENV ARTIFACT_STORAGE_PATH=/data/artifacts COPY ./entrypoint-skyvern.sh /app/entrypoint-skyvern.sh RUN chmod +x /app/entrypoint-skyvern.sh -COPY ./entrypoint-streamlit.sh /app/entrypoint-streamlit.sh -RUN chmod +x /app/entrypoint-streamlit.sh - CMD [ "/bin/bash", "/app/entrypoint-skyvern.sh" ]